![JAR search and dependency download from the Maven repository](/logo.png)
com.github.panchitoboy.shiro.jwt.repository.TokenResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shiro-jwt Show documentation
Show all versions of shiro-jwt Show documentation
Apache shiro JWT library for Rest Services
package com.github.panchitoboy.shiro.jwt.repository;
public class TokenResponse {
public TokenResponse() {
}
public TokenResponse(UserDefault user, String token) {
this.user = user;
this.token = token;
}
private String token;
private UserDefault user;
public String getToken() {
return token;
}
public UserDefault getUser() {
return user;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy