All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ocoop.shiro.MobileCaptchaToken Maven / Gradle / Ivy

package cn.ocoop.shiro;

import cn.ocoop.shiro.authc.TokenExtendFace;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.UsernamePasswordToken;

public class MobileCaptchaToken extends UsernamePasswordToken implements TokenExtendFace {
    private AuthenticationException authenticationException;

    public MobileCaptchaToken(String username, String password, boolean rememberMe, String host) {
        super(username, password, rememberMe, host);
    }

    public AuthenticationException getAuthenticationException() {
        return authenticationException;
    }

    public void setAuthenticationException(AuthenticationException authenticationException) {
        this.authenticationException = authenticationException;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy