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

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

There is a newer version: 1.0.3
Show newest version
package cn.ocoop.shiro;


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

public class UsernamePasswordToken extends org.apache.shiro.authc.UsernamePasswordToken implements TokenExtendFace {
    private AuthenticationException authenticationException;

    public UsernamePasswordToken(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