shiro (六) spring结合 -- 扩展UsernamePasswordToken
package com.miv.shiro.common;
import org.apache.shiro.authc.UsernamePasswordToken;
/**
* 功能描述
*
* <pre>
* 特殊说明
* 扩展传入参数
* </pre>
*
* @author R20962
* @create Aug 2, 2012
*
*/
public class MIVshiroToken extends UsernamePasswordToken {
/**
*
*/
private static final long serialVersionUID = 1L;
private Integer ROLE_CODE = null;
public MIVshiroToken(String loginName, String password, Integer ROLE_CODE, boolean flag) {
super(loginName, password, flag);
this.ROLE_CODE = ROLE_CODE;
}
public Integer getROLE_CODE() {
return ROLE_CODE;
}
}
相关推荐
杜鲁门 2020-11-05
luckyxl0 2020-08-16
Dullonjiang 2020-08-09
xclxcl 2020-08-03
zmzmmf 2020-08-03
MicroBoy 2020-08-02
ganjing 2020-08-02
likesyour 2020-08-01
zmzmmf 2020-07-09
MicroBoy 2020-07-05
zzhao 2020-06-26
子云 2020-06-18
visionzheng 2020-06-07
neweastsun 2020-06-04
ErixHao 2020-06-03
GDreams0 2020-06-01
ganjing 2020-05-29
zmzmmf 2020-05-28
nullcy 2020-05-26