package com.fdkankan.web.jwt; import org.apache.shiro.authc.AuthenticationToken; public class JwtToken implements AuthenticationToken { private String token; private String loginType; public JwtToken(String token, String loginType){ this.token = token; this.loginType = loginType; } @Override public Object getPrincipal() { return token; } @Override public Object getCredentials() { return token; } public String getLoginType() { return loginType; } public void setLoginType(String loginType) { this.loginType = loginType; } }