Searched refs:AuthUtils (Results 51 - 75 of 98) sorted by relevance

1234

/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java53 import com.sun.identity.authentication.service.AuthUtils;
111 authErrorMessage = AuthUtils.getErrorMessage(errorCode);
112 authErrorTemplate = AuthUtils.getErrorTemplate(errorCode);
309 successURL = AuthUtils.getLoginSuccessURL(authContext);
342 failureURL = AuthUtils.getLoginFailedURL(authContext);
395 AuthUtils.destroySession(authContext);
431 AuthUtils.destroySession(authContext);
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java20 import com.sun.identity.authentication.service.AuthUtils;
236 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.MODULE);
266 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.SERVICE);
297 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.REALM);
/forgerock/openam-v13/openam-federation/OpenFM/src/main/integrations/idm/src/com/sun/identity/authentication/spi/
H A DFirstTimeLogin.java38 import com.sun.identity.authentication.service.AuthUtils;
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java20 import com.sun.identity.authentication.service.AuthUtils;
236 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.MODULE);
266 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.SERVICE);
297 given(coreServicesWrapper.getCompositeAdviceType(authContext)).willReturn(AuthUtils.REALM);
/forgerock/openam/openam-federation/OpenFM/src/main/integrations/idm/src/com/sun/identity/authentication/spi/
H A DFirstTimeLogin.java38 import com.sun.identity.authentication.service.AuthUtils;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DReplayPasswd.java35 import com.sun.identity.authentication.service.AuthUtils;
148 for (String domain : AuthUtils.getCookieDomainsForRequest(request)) {
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DDelegationIsAllowedSubResourceTest.java39 import com.sun.identity.entitlement.util.AuthUtils;
170 SSOToken token = AuthUtils.authenticate("/", USER1, USER1);
H A DDelegationPrivilegeSubResourceTest.java34 import com.sun.identity.entitlement.util.AuthUtils;
149 SSOToken ssoToken = AuthUtils.authenticate("/", USER1, USER1);
H A DPrivilegeDelegationTest.java35 import com.sun.identity.entitlement.util.AuthUtils;
80 token = AuthUtils.authenticate(realm, USER_NAME, USER_NAME);
H A DTestEvaluator.java36 import com.sun.identity.entitlement.util.AuthUtils;
172 Subject subject = AuthUtils.createSubject(user1.getUniversalId());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DReplayPasswd.java35 import com.sun.identity.authentication.service.AuthUtils;
148 for (String domain : AuthUtils.getCookieDomainsForRequest(request)) {
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DDelegationIsAllowedSubResourceTest.java39 import com.sun.identity.entitlement.util.AuthUtils;
169 SSOToken token = AuthUtils.authenticate("/", USER1, USER1);
H A DDelegationPrivilegeSubResourceTest.java36 import com.sun.identity.entitlement.util.AuthUtils;
150 SSOToken ssoToken = AuthUtils.authenticate("/", USER1, USER1);
H A DPrivilegeDelegationTest.java35 import com.sun.identity.entitlement.util.AuthUtils;
80 token = AuthUtils.authenticate(realm, USER_NAME, USER_NAME);
H A DTestEvaluator.java36 import com.sun.identity.entitlement.util.AuthUtils;
171 Subject subject = AuthUtils.createSubject(user1.getUniversalId());
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMConfiguration.java35 import com.sun.identity.authentication.service.AuthUtils;
275 return AuthUtils.getModuleServiceName(moduleName);
408 addServiceListener(AuthUtils.getModuleServiceName(
603 addServiceListener(AuthUtils.getModuleServiceName(type), name);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAllowedModulesChoiceValues.java146 String serviceName = AuthUtils.getModuleServiceName(value);
H A DLoginState.java644 logFailed(AuthUtils.getErrorVal(AMAuthErrorCode.AUTH_ORG_INACTIVE,
645 AuthUtils.ERROR_MESSAGE), "ORGINACTIVE");
890 Map attrs = AuthUtils.getGlobalAttributes("iPlanetAMAuthService");
1103 AuthUtils.getClientType(servletRequest) : AuthUtils.getDefaultClientType();
1634 AuthUtils.removeAuthContext(sid);
1726 if (AuthUtils.newSessionArgExists(requestHash, sid) &&
1730 userOrg = AuthUtils.getDomainNameByRequest(request, requestHash);
1753 this.loginURL = AuthUtils.constructLoginURL(request);
1757 this.forwardSuccess = AuthUtils
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMConfiguration.java49 import com.sun.identity.authentication.service.AuthUtils;
256 return AuthUtils.getModuleServiceName(moduleName);
389 addServiceListener(AuthUtils.getModuleServiceName(
584 addServiceListener(AuthUtils.getModuleServiceName(type), name);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAllowedModulesChoiceValues.java146 String serviceName = AuthUtils.getModuleServiceName(value);
H A DLoginState.java661 logFailed(AuthUtils.getErrorVal(AMAuthErrorCode.AUTH_ORG_INACTIVE,
662 AuthUtils.ERROR_MESSAGE), "ORGINACTIVE");
1071 AuthUtils.getClientType(servletRequest) : AuthUtils.getDefaultClientType();
1325 loginURL = AuthUtils.constructLoginURL(request);
1592 AuthUtils.removeAuthContext(finalSessionId);
1676 if (AuthUtils.newSessionArgExists(requestHash, sid) && sid.toString().length() > 0) {
1679 userOrg = AuthUtils.getDomainNameByRequest(request, requestHash);
1701 this.loginURL = AuthUtils.constructLoginURL(request);
1705 this.forwardSuccess = AuthUtils
[all...]
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/rest/
H A DRestPermissionTest.java43 import com.sun.identity.entitlement.util.AuthUtils;
123 SSOToken ssoToken = AuthUtils.authenticate(REALM, USER_NAME,
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/rest/
H A DRestPermissionTest.java43 import com.sun.identity.entitlement.util.AuthUtils;
123 SSOToken ssoToken = AuthUtils.authenticate(REALM, USER_NAME,
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/plugin/session/impl/
H A DFMSessionProvider.java68 import com.sun.identity.authentication.service.AuthUtils;
432 AuthUtils.logout(token.getTokenID().toString(), request, response);
434 AuthUtils.clearAllCookies(request, response);
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/plugin/session/impl/
H A DFMSessionProvider.java68 import com.sun.identity.authentication.service.AuthUtils;
428 AuthUtils.logout(token.getTokenID().toString(), request, response);
430 AuthUtils.clearAllCookies(request, response);

Completed in 62 milliseconds

1234