Searched refs:AuthContextLocal (Results 1 - 25 of 33) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthUtils.java47 import com.sun.identity.authentication.server.AuthContextLocal;
143 getSession(AuthContextLocal authContext) {
174 public static AuthContextLocal getAuthContext(
195 public static AuthContextLocal getAuthContext(
204 AuthContextLocal authContext = null;
288 utilDebug.message("Error creating AuthContextLocal : ");
305 utilDebug.message("Error creating AuthContextLocal : "
318 // AuthContextLocal object.
320 static AuthContextLocal processAuthContext(AuthContextLocal authContex
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java22 import com.sun.identity.authentication.server.AuthContextLocal;
35 * Returns the wrapped AuthContextLocal.
37 * @return The wrapped AuthContextLocal.
39 AuthContextLocal getAuthContext();
42 * Starts the login process for the given AuthContextLocal object.
49 * Starts the login process for the given AuthContextLocal object.
58 * Starts the login process for the given AuthContextLocal object.
103 * Returns the current authentication index type from the AuthContextLocal.
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DCoreServicesWrapper.java25 import com.sun.identity.authentication.server.AuthContextLocal;
42 * Will either create or retrieve an existing AuthContextLocal.
49 * @param sessionID The Session ID of the AuthContextLocal, empty String if initial request.
50 * @param isSessionUpgrade Whether the AuthContextLocal should be created for session upgrade.
52 * @return The AuthContextLocal wrapped as a AuthContextLocalWrapper.
54 * AuthContextLocal.
58 AuthContextLocal authContextLocal = AuthUtils.getAuthContext(request, response, sessionID, isSessionUpgrade,
66 * Checks to see if an AuthContextLocal is a new or an existing login process.
69 * AuthContextLocal)}
71 * @param authContextLocalWrapper The AuthContextLocal wrappe
[all...]
H A DAuthContextLocalWrapper.java27 import com.sun.identity.authentication.server.AuthContextLocal;
35 * A wrapper class around AuthContextLocal.
41 private final AuthContextLocal authContextLocal;
46 * @param authContextLocal An instance of a AuthContextLocal.
48 public AuthContextLocalWrapper(AuthContextLocal authContextLocal) {
56 public AuthContextLocal getAuthContext() {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java22 import com.sun.identity.authentication.server.AuthContextLocal;
35 * Returns the wrapped AuthContextLocal.
37 * @return The wrapped AuthContextLocal.
39 AuthContextLocal getAuthContext();
42 * Starts the login process for the given AuthContextLocal object.
49 * Starts the login process for the given AuthContextLocal object.
58 * Starts the login process for the given AuthContextLocal object.
103 * Returns the current authentication index type from the AuthContextLocal.
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DCoreServicesWrapper.java25 import com.sun.identity.authentication.server.AuthContextLocal;
42 * Will either create or retrieve an existing AuthContextLocal.
49 * @param sessionID The Session ID of the AuthContextLocal, empty String if initial request.
50 * @param isSessionUpgrade Whether the AuthContextLocal should be created for session upgrade.
52 * @return The AuthContextLocal wrapped as a AuthContextLocalWrapper.
54 * AuthContextLocal.
58 AuthContextLocal authContextLocal = AuthUtils.getAuthContext(request, response, sessionID, isSessionUpgrade,
66 * Checks to see if an AuthContextLocal is a new or an existing login process.
69 * AuthContextLocal)}
71 * @param authContextLocalWrapper The AuthContextLocal wrappe
[all...]
H A DAuthContextLocalWrapper.java27 import com.sun.identity.authentication.server.AuthContextLocal;
36 * A wrapper class around AuthContextLocal.
42 private final AuthContextLocal authContextLocal;
47 * @param authContextLocal An instance of a AuthContextLocal.
49 public AuthContextLocalWrapper(AuthContextLocal authContextLocal) {
57 public AuthContextLocal getAuthContext() {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthUtils.java68 import com.sun.identity.authentication.server.AuthContextLocal;
137 public static InternalSession getSession(AuthContextLocal authContext) {
167 public static AuthContextLocal getAuthContext(final HttpServletRequest request,
187 public static AuthContextLocal getAuthContext(final HttpServletRequest request,
196 AuthContextLocal authContext = null;
273 utilDebug.message("Error creating AuthContextLocal : ");
289 utilDebug.message("Error creating AuthContextLocal : "
302 // AuthContextLocal object.
304 static AuthContextLocal processAuthContext(final AuthContextLocal oldAuthContex
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/core/
H A DCoreServicesWrapper.java31 import com.sun.identity.authentication.server.AuthContextLocal;
210 * @param authContext The AuthContextLocal object.
215 public void setLbCookie(AuthContextLocal authContext, HttpServletRequest request, HttpServletResponse response)
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/core/
H A DCoreServicesWrapper.java31 import com.sun.identity.authentication.server.AuthContextLocal;
211 * @param authContext The AuthContextLocal object.
216 public void setLbCookie(AuthContextLocal authContext, HttpServletRequest request, HttpServletResponse response)
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLRequest.java119 AuthContextLocal authContext = null;
481 public void setAuthContext(AuthContextLocal authContext) {
490 public AuthContextLocal getAuthContext() {
H A DAuthXMLRequestParser.java152 AuthContextLocal authContext =
170 AuthContextLocal authContext = null;
204 AuthContextLocal authContext = null;
252 AuthContextLocal authContext = AuthUtils.getAuthContext(
281 AuthContextLocal authContext =
H A DAuthXMLHandler.java275 AuthContextLocal authContext = authXMLRequest.getAuthContext();
801 AuthContextLocal authContext
850 AuthContextLocal authContext,
950 AuthContextLocal acl) {
996 AuthContextLocal authContext) {
H A DAuthContextLocal.java25 * $Id: AuthContextLocal.java,v 1.12 2009/05/21 21:57:34 qcheng Exp $
58 * The <code>AuthContextLocal</code> provides the implementation for
86 public final class AuthContextLocal extends Object class in inherits:Object,java.io.Serializable
173 * Creates <code>AuthContextLocal</code> instance is obtained for a given
181 public AuthContextLocal(String orgName) { method in class:AuthContextLocal
182 authDebug.message("AuthContextLocal() constructor called");
209 * Starts the login process for the given <code>AuthContextLocal</code>
220 * Starts the login process for the given <code>AuthContextLocal</code>s
250 * Start the login process for the <code>AuthContextLocal</code> object
266 authDebug.message("AuthContextLocal
[all...]
H A DAuthXMLResponse.java72 AuthContextLocal authContext = null;
486 public void setAuthContext (AuthContextLocal authContext) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLRequest.java119 AuthContextLocal authContext = null;
481 public void setAuthContext(AuthContextLocal authContext) {
490 public AuthContextLocal getAuthContext() {
H A DAuthXMLRequestParser.java152 AuthContextLocal authContext =
170 AuthContextLocal authContext = null;
204 AuthContextLocal authContext = null;
252 AuthContextLocal authContext = AuthUtils.getAuthContext(
281 AuthContextLocal authContext =
H A DAuthXMLHandler.java275 AuthContextLocal authContext = authXMLRequest.getAuthContext();
801 AuthContextLocal authContext
850 AuthContextLocal authContext,
950 AuthContextLocal acl) {
996 AuthContextLocal authContext) {
H A DAuthContextLocal.java25 * $Id: AuthContextLocal.java,v 1.12 2009/05/21 21:57:34 qcheng Exp $
59 * The <code>AuthContextLocal</code> provides the implementation for
87 public final class AuthContextLocal extends Object class in inherits:Object,java.io.Serializable
167 * Creates <code>AuthContextLocal</code> instance is obtained for a given
175 public AuthContextLocal(String orgName) { method in class:AuthContextLocal
176 authDebug.message("AuthContextLocal() constructor called");
203 * Starts the login process for the given <code>AuthContextLocal</code>
214 * Starts the login process for the given <code>AuthContextLocal</code>s
244 * Start the login process for the <code>AuthContextLocal</code> object
260 authDebug.message("AuthContextLocal
[all...]
H A DAuthXMLResponse.java72 AuthContextLocal authContext = null;
486 public void setAuthContext (AuthContextLocal authContext) {
/forgerock/openam-v13/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/
H A DAuthExceptionViewBean.java41 import com.sun.identity.authentication.server.AuthContextLocal;
313 AuthContextLocal ac = null;
/forgerock/openam/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/
H A DAuthExceptionViewBean.java52 import com.sun.identity.authentication.server.AuthContextLocal;
315 AuthContextLocal ac = null;
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java71 import com.sun.identity.authentication.server.AuthContextLocal;
110 private transient AuthContextLocal authContext;
439 * @return the AuthContextLocal associated with this session
441 public AuthContextLocal getAuthContext() {
458 public void setAuthContext(AuthContextLocal authContext) {
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/xacml/plugins/
H A DFMSubjectMapper.java36 import com.sun.identity.authentication.server.AuthContextLocal;
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/xacml/plugins/
H A DFMSubjectMapper.java36 import com.sun.identity.authentication.server.AuthContextLocal;

Completed in 77 milliseconds

12