kz.greetgo.security.session.SessionIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
package kz.greetgo.security.session;
public class SessionIdentity {
public final String id;
public final String token;
public SessionIdentity(String id, String token) {
this.id = id;
this.token = token;
}
@Override
public String toString() {
return "SessionIdentity{" +
"id='" + id + '\'' +
", token='" + token + '\'' +
'}';
}
}