javax.security.auth.login.CredentialExpiredException Java Examples

The following examples show how to use javax.security.auth.login.CredentialExpiredException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DefaultAccountStateHandler.java    From springboot-shiro-cas-mybatis with MIT License 6 votes vote down vote up
/**
 * Instantiates a new account state handler, that populates
 * the error map with LDAP error codes and corresponding exceptions.
 */
public DefaultAccountStateHandler() {
    this.errorMap = new HashMap<>();
    this.errorMap.put(ActiveDirectoryAccountState.Error.ACCOUNT_DISABLED, new AccountDisabledException());
    this.errorMap.put(ActiveDirectoryAccountState.Error.ACCOUNT_LOCKED_OUT, new AccountLockedException());
    this.errorMap.put(ActiveDirectoryAccountState.Error.INVALID_LOGON_HOURS, new InvalidLoginTimeException());
    this.errorMap.put(ActiveDirectoryAccountState.Error.INVALID_WORKSTATION, new InvalidLoginLocationException());
    this.errorMap.put(ActiveDirectoryAccountState.Error.PASSWORD_MUST_CHANGE, new AccountPasswordMustChangeException());
    this.errorMap.put(ActiveDirectoryAccountState.Error.PASSWORD_EXPIRED, new CredentialExpiredException());
    this.errorMap.put(EDirectoryAccountState.Error.ACCOUNT_EXPIRED, new AccountExpiredException());
    this.errorMap.put(EDirectoryAccountState.Error.LOGIN_LOCKOUT, new AccountLockedException());
    this.errorMap.put(EDirectoryAccountState.Error.LOGIN_TIME_LIMITED, new InvalidLoginTimeException());
    this.errorMap.put(EDirectoryAccountState.Error.PASSWORD_EXPIRED, new CredentialExpiredException());
    this.errorMap.put(PasswordExpirationAccountState.Error.PASSWORD_EXPIRED, new CredentialExpiredException());
    this.errorMap.put(PasswordPolicyControl.Error.ACCOUNT_LOCKED, new AccountLockedException());
    this.errorMap.put(PasswordPolicyControl.Error.PASSWORD_EXPIRED, new CredentialExpiredException());
    this.errorMap.put(PasswordPolicyControl.Error.CHANGE_AFTER_RESET, new CredentialExpiredException());
}
 
Example #2
Source File: SsoUtil.java    From iaf with Apache License 2.0 6 votes vote down vote up
public static String getSsoToken() throws WSSecurityException, CredentialDestroyedException, CredentialExpiredException {
	String result=null;

	Subject subj=WSSubject.getCallerSubject();

	if (subj==null) {
		throw new WSSecurityException("could not find Subject");
	}
	Set pubs=subj.getPublicCredentials();
	if (pubs==null) {
		throw new WSSecurityException("could not find PublicCredentials");
	}
	for (Iterator it=pubs.iterator();result==null && it.hasNext();) {
		Object pc = it.next();
		if (pc instanceof WSCredentialImpl) {
			WSCredentialImpl wsci = (WSCredentialImpl)pc;
			byte token[] = wsci.getCredentialToken();
			if (token!=null && token.length>0) {
				result=Base64.encodeBase64String(token);
			}
		}
	}
	return result;
}