Searched defs:authContext (Results 26 - 30 of 30) sorted by relevance

12

/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLRequest.java119 AuthContextLocal authContext = null; field in class:AuthXMLRequest
479 * @param authContext Authentication context for this request.
481 public void setAuthContext(AuthContextLocal authContext) { argument
482 this.authContext = authContext;
491 return authContext;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAMLoginContext.java132 private final AuthContextLocal authContext; field in class:AMLoginContext
188 * @param authContext <code>AuthContextLocal</code> object. Must not be null;
190 public AMLoginContext(AuthContextLocal authContext) { argument
191 Reject.ifNull(authContext);
197 this.authContext = authContext;
244 * Ensure authContext.getLoginState() created and loginParamsMap provided
246 if (authContext.getLoginState() == null) {
247 debug.error("Error: authContext.getLoginState()");
249 if (authContext
[all...]
H A DAuthUtils.java137 public static InternalSession getSession(AuthContextLocal authContext) { argument
139 InternalSession sess = getLoginState(authContext).getSession();
196 AuthContextLocal authContext = null;
203 authContext = retrieveAuthContext(sessionId);
207 utilDebug.message("AuthUtil:getAuthContext:authContext is..: " + authContext);
210 if(!sessionId.isNull() && authContext == null && !isSessionUpgrade) {
245 if ((authContext == null) && (isLogout)) {
249 if ((authContext == null) || (isSessionUpgrade) || (isBackPost)) {
263 authContext
399 getLoginState(AuthContextLocal authContext) argument
409 getSessionIDString(AuthContextLocal authContext) argument
493 getLoginSuccessURL(AuthContextLocal authContext) argument
505 getLoginFailedURL(AuthContextLocal authContext) argument
532 getFileName(AuthContextLocal authContext,String fileName) argument
547 getInetDomainStatus(AuthContextLocal authContext) argument
560 encodeURL(String url, AuthContextLocal authContext) argument
581 getLocale(AuthContextLocal authContext) argument
607 destroySession(AuthContextLocal authContext) argument
621 sessionTimedOut(AuthContextLocal authContext) argument
644 createlbCookie(AuthContextLocal authContext, String cookieDomain) argument
661 setlbCookie(AuthContextLocal authContext, HttpServletRequest request, HttpServletResponse response) argument
681 getCompositeAdviceType(AuthContextLocal authContext) argument
701 getIndexType(AuthContextLocal authContext) argument
723 getIndexName(AuthContextLocal authContext) argument
744 getRecdCallback(AuthContextLocal authContext) argument
810 getOrgDN(AuthContextLocal authContext) argument
1073 getOldSession(AuthContextLocal authContext) argument
1096 isSessionUpgrade(AuthContextLocal authContext) argument
1154 getLoginURL(AuthContextLocal authContext) argument
1163 getCallbacksPerState(AuthContextLocal authContext, String pageState) argument
1185 setCallbacksPerState(AuthContextLocal authContext, String pageState, Callback[] callbacks) argument
1236 getSuccessURL( HttpServletRequest request, AuthContextLocal authContext) argument
1483 isForwardSuccess(AuthContextLocal authContext, HttpServletRequest req) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthUtils.java143 getSession(AuthContextLocal authContext) { argument
146 getLoginState(authContext).getSession();
204 AuthContextLocal authContext = null;
211 authContext = retrieveAuthContext(request, sid);
216 utilDebug.message("AuthUtil:getAuthContext:authContext is..: "
217 + authContext);
220 if(!sid.isNull() && authContext == null && !isSessionUpgrade) {
259 if ((authContext == null) && (isLogout)) {
263 if ((authContext == null) || (isSessionUpgrade) || (isBackPost)) {
277 authContext
320 processAuthContext(AuthContextLocal authContext, HttpServletRequest request, HttpServletResponse response, Hashtable dataHash, SessionID sid) argument
413 getLoginState(AuthContextLocal authContext) argument
422 getRequestParameters(AuthContextLocal authContext) argument
432 getSidString(AuthContextLocal authContext) argument
514 getLogoutURL(AuthContextLocal authContext) argument
557 getLoginSuccessURL(AuthContextLocal authContext) argument
569 getLoginFailedURL(AuthContextLocal authContext) argument
596 getFileName(AuthContextLocal authContext,String fileName) argument
611 getInetDomainStatus(AuthContextLocal authContext) argument
629 encodeURL(String url, AuthContextLocal authContext, HttpServletResponse response) argument
651 getLocale(AuthContextLocal authContext) argument
677 destroySession(AuthContextLocal authContext) argument
691 sessionTimedOut(AuthContextLocal authContext) argument
714 createlbCookie(AuthContextLocal authContext, String cookieDomain, boolean persist) argument
731 setlbCookie(AuthContextLocal authContext, HttpServletRequest request, HttpServletResponse response) argument
751 getCompositeAdviceType(AuthContextLocal authContext) argument
771 getIndexType(AuthContextLocal authContext) argument
793 getIndexName(AuthContextLocal authContext) argument
814 getRecdCallback(AuthContextLocal authContext) argument
880 getOrgDN(AuthContextLocal authContext) argument
1140 getOldSession(AuthContextLocal authContext) argument
1226 isSessionUpgrade(AuthContextLocal authContext) argument
1284 getLoginURL(AuthContextLocal authContext) argument
1301 getCallbacksPerState(AuthContextLocal authContext, String pageState) argument
1323 setCallbacksPerState(AuthContextLocal authContext, String pageState, Callback[] callbacks) argument
1355 getSidValue(AuthContextLocal authContext, HttpServletRequest request) argument
1396 isCookieSupported(AuthContextLocal authContext, HttpServletRequest request) argument
1559 getSuccessURL( HttpServletRequest request, AuthContextLocal authContext) argument
1808 isForwardSuccess(AuthContextLocal authContext, HttpServletRequest req) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java110 private transient AuthContextLocal authContext; field in class:InternalSession
442 return authContext;
450 return null != authContext;
456 * @param authContext the authentication context
458 public void setAuthContext(AuthContextLocal authContext) { argument
459 this.authContext = authContext;
466 this.authContext = null;

Completed in 53 milliseconds

12