org.apache.shiro.biz.authc.token.CaptchaAuthenticationToken Maven / Gradle / Ivy
The newest version!
package org.apache.shiro.biz.authc.token;
import org.apache.shiro.authc.AuthenticationToken;
/**
* 验证码支持
* @author hiwepy
*/
public interface CaptchaAuthenticationToken extends AuthenticationToken {
String getCaptcha();
}