1 Star 0 Fork 121

zengshuai/JFinalShiroPlugin

forked from 李飞/JFinalShiroPlugin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CaptchaUsernamePasswordToken.java 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
lifei_osc 提交于 2015-08-03 04:15 . 添加实际例子代码
/**
* Copyright (C) 2014 陕西威尔伯乐信息技术有限公司
* @Package com.wellbole.web.sys.login
* @Title: CaptchaUsernamePasswordToken.java
* @Description: 在用户名和密码的基础上添加验证码的Token
* @author 李飞 (lifei@wellbole.com)
* @date 2014年9月11日 下午1:20:33
* @since V1.0.0
*
* Modification History:
* Date Author Version Description
* -------------------------------------------------------------
* 2014年9月11日 李飞 V1.0.0 新建文件
*/
package com.wellbole.web.core.shiro;
import org.apache.shiro.authc.UsernamePasswordToken;
/**
* @ClassName: CaptchaUsernamePasswordToken
* @Description: 在用户名和密码的基础上添加验证码的Token
* @author 李飞 (lifei@wellbole.com)
* @date 2014年9月11日 下午1:20:33
* @since V1.0.0
*/
public class CaptchaUsernamePasswordToken extends UsernamePasswordToken {
private static final long serialVersionUID = 4676958151524148623L;
private String captcha;
public CaptchaUsernamePasswordToken(String username, String password, boolean rememberMe, String host, String captcha) {
super(username, password, rememberMe, host);
this.captcha = captcha;
}
public String getCaptcha() {
return captcha;
}
public void setCaptcha(String captcha) {
this.captcha = captcha;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/izengshuai/jfinalshiroplugin.git
git@gitee.com:izengshuai/jfinalshiroplugin.git
izengshuai
jfinalshiroplugin
JFinalShiroPlugin
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385