Lines Matching defs:authContext

275         AuthContextLocal authContext = authXMLRequest.getAuthContext();
276 LoginState loginState = AuthUtils.getLoginState(authContext);
288 authResponse.setAuthContext(authContext);
291 debug.message("authContext is : " + authContext);
317 indexTypeLoc = AuthUtils.getIndexType(authContext);
318 indexNameLoc = AuthUtils.getIndexName(authContext);
373 if ((AuthUtils.getIndexType(authContext) == AuthContext.IndexType.LEVEL) ||
374 (AuthUtils.getIndexType(authContext) ==
417 authResponse, loginState, authContext);
428 authResponse, loginState, authContext);
442 authContext.login();
443 //setServletRequest(servletRequest,authContext);
444 processRequirements(xml, authContext,authResponse, params,
446 loginStatus = authContext.getStatus();
451 checkACException(authResponse, authContext);
455 authResponse.setLoginStatus(authContext.getStatus());
469 authResponse, loginState, authContext);
488 authContext.login(indexType,indexName, envMap, locale);
490 authContext.login(indexType,indexName, envMap, null);
492 //setServletRequest(servletRequest,authContext);
493 processRequirements(xml, authContext,authResponse, params,
495 loginStatus = authContext.getStatus();
499 checkACException(authResponse, authContext);
508 authContext.login(subject);
509 //setServletRequest(servletRequest,authContext);
510 processRequirements(xml, authContext,authResponse, params,
513 loginStatus = authContext.getStatus();
514 checkACException(authResponse, authContext);
522 //setServletRequest(servletRequest,authContext);
525 authContext.submitRequirements(submittedCallbacks);
527 if (authContext.hasMoreRequirements()) {
528 reqdCallbacks = authContext.getRequirements();
534 loginStatus = authContext.getStatus();
539 checkACException(authResponse, authContext);
549 authResponse, loginState, authContext);
551 Set moduleNames = authContext.getModuleInstanceNames();
553 authResponse.setAuthContext(authContext);
555 checkACException(authResponse, authContext);
690 authContext.abort();
691 loginStatus = authContext.getStatus();
693 checkACException(authResponse, authContext);
704 if (authContext != null) {
705 debug.message("error Code: " + authContext.getErrorCode());
706 debug.message("error Template: " + authContext.getErrorTemplate());
711 if((authContext.getErrorMessage() != null) &&
712 (authContext.getErrorMessage().equals(
720 if ((authContext.getErrorCode() != null) &&
721 ((authContext.getErrorCode()).length() > 0 )) {
722 authResponse.setErrorCode(authContext.getErrorCode());
724 checkACException(authResponse, authContext);
725 if ((authContext.getErrorTemplate() != null) &&
726 ((authContext.getErrorTemplate()).length() > 0 )) {
727 authResponse.setErrorTemplate(authContext.getErrorTemplate());
730 if((authContext.getErrorCode() != null) &&
731 (authContext.getErrorCode().equals(
733 String lockWarning = authContext.getLockoutMsg();
801 AuthContextLocal authContext
803 if ( authContext == null ) {
811 AuthUtils.setlbCookie(authContext, servletRequest, servletResponse);
850 AuthContextLocal authContext,
863 while (authContext.hasMoreRequirements()) {
864 Callback[] reqdCallbacks = authContext.getRequirements();
871 AuthUtils.getLoginState(authContext);
930 authContext.submitRequirements(reqdCallbacks);
936 if (!authContext.hasMoreRequirements()) {
937 AuthContext.Status loginStatus = authContext.getStatus();
996 AuthContextLocal authContext) {
997 LoginState theLoginState = AuthUtils.getLoginState(authContext);