remove class useless
This commit is contained in:
parent
d00aacbada
commit
5c83694bce
@ -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 = "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user