From 5c83694bce2e618ad7c363110b3fadc9608156f5 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Fri, 6 May 2022 23:36:08 +0200 Subject: [PATCH] remove class useless --- src/main/java/com/covas/Json/Token.java | 36 ------------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/main/java/com/covas/Json/Token.java diff --git a/src/main/java/com/covas/Json/Token.java b/src/main/java/com/covas/Json/Token.java deleted file mode 100644 index 3efa5c2..0000000 --- a/src/main/java/com/covas/Json/Token.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.covas.Json; - -import io.quarkus.runtime.annotations.RegisterForReflection; - -@RegisterForReflection -public class Token { - - public String name; - public Boolean isHttps; - public String authScheme; - public Boolean hasJwt; - public String birthday; - public String role = ""; - - public Token(){ - this.name = "anonymous"; - this.isHttps = false; - this.authScheme = ""; - this.hasJwt = false; - this.birthday = ""; - this.role = ""; - } - - public Token(String name, Boolean isHttps, String authScheme, Boolean hasJwt){ - this.name = name; - this.isHttps = isHttps; - this.authScheme = authScheme; - this.hasJwt = hasJwt; - this.birthday = ""; - this.role = ""; - } - - - - -}