Searched refs:session (Results 426 - 450 of 1175) sorted by relevance

<<11121314151617181920>>

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionPollerPool.java27 package org.forgerock.openam.session;
29 import static org.forgerock.openam.session.SessionConstants.*;
38 import com.iplanet.dpro.session.Session;
73 * Indicates whether to enable or disable the session cleanup thread.
76 SystemProperties.getAsBoolean("com.iplanet.am.session.client.cleanup.enable", true);
79 * Indicates whether session to use polling or notifications to clear the
96 // implementation for making the session properties
H A DSessionConstants.java27 package org.forgerock.openam.session;
60 public static final String SESSION_SERVICE = "session";
66 SystemProperties.getAsBoolean("com.sun.identity.session.resetLBCookie", false);
69 "com.iplanet.am.session.client.polling.enable";
72 * The name of the JSON field which describes the session's username.
77 * The name of the JSON field which describes the session's universal ID.
82 * The name of the JSON field which describes the session's realm.
87 * The name of the JSON field which describes the session's handle.
92 * The name of the JSON Field which describes the session's latest access time.
97 * The name of the JSON field which describes the session'
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DIDPSessionCopy.java31 import com.sun.identity.plugin.session.SessionException;
32 import com.sun.identity.plugin.session.SessionManager;
33 import com.sun.identity.plugin.session.SessionProvider;
41 * This class represents a copy of a session in the identity provider side.
81 SAML2Utils.debug.error("Error retrieving session provider.", se);
93 * Returns the <code>SSO Token</code> of the session
95 * @return the <code>SSO Token</code> of the session
103 * <code>SPEntityID</code> pair of the session
106 * <code>SPEntityID</code> pair of the session
113 * Sets the pending log out request id of the session
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/session/
H A DSMServlet.java29 package com.sun.identity.console.session;
42 public static final String DEFAULT_MODULE_URL = "../session";
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMProfileModel.java30 package com.sun.identity.console.session.model;
41 * session profile view bean.
54 * Invalidates list of session.
56 * @param list of session <code>ID</code>s.
58 * @return a list of session <code>ID</code>s that cannot be validated.
64 * Returns true if current user session state is valid.
66 * @return true is the session is valid.
71 * Returns session cache.
74 * @return session cache.
75 * @throws AMConsoleException if unable to get the session cach
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DTokenRestrictionFactory.java30 package com.iplanet.dpro.session;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAbstractAuthenticationEventAuditor.java22 import com.iplanet.dpro.session.service.InternalSession;
82 InternalSession session = loginState == null ? null : loginState.getSession();
83 String sessionContext = session == null ? null : session.getProperty(Constants.AM_CTX_ID);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DCTSDataLayer.java27 import com.iplanet.dpro.session.service.SessionService;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionConstants.java16 package org.forgerock.openam.session;
67 public static final String SESSION_SERVICE = "session";
73 SystemProperties.getAsBoolean("com.sun.identity.session.resetLBCookie", false);
76 "com.iplanet.am.session.client.polling.enable";
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessSSOProvider.java26 import org.forgerock.openam.session.blacklist.SessionBlacklist;
28 import com.iplanet.dpro.session.SessionException;
29 import com.iplanet.dpro.session.SessionID;
30 import com.iplanet.dpro.session.service.SessionConstants;
58 StatelessSession session;
61 session = statelessSessionFactory.generate(sessionId);
66 final StatelessSSOToken ssoToken = new StatelessSSOToken(session);
134 final StatelessSession session = statelessSSOToken.getSession();
147 return statelessSSOToken.isValid(refresh) && !sessionBlacklist.isBlacklisted(session);
149 debug.error("Unable to check session blacklis
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/session/
H A DSessionException.java29 package com.sun.identity.plugin.session;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DLogUtils.java255 * @param session the user's session object.
258 String data[], Object session) {
260 logger.access(level, msgId, data, session);
284 * @param session the user's session object.
287 String data[], Object session) {
289 logger.error(level, msgId, data, session);
257 access(Level level, String msgId, String data[], Object session) argument
286 error(Level level, String msgId, String data[], Object session) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/
H A DIPRPSignoutRequest.java31 import com.sun.identity.plugin.session.SessionException;
108 Object session = null;
111 session = WSFederationUtils.sessionProvider.getSession(request);
117 // Don't care too much about session exceptions here - usual cause
118 // is trying to log out after the session has expired
144 if ( session != null )
147 getProperty(session, WSFederationConstants.SESSION_IDP);
177 getProperty(session, WSFederationConstants.SESSION_SP_LIST);
208 // Can't remove a session property, so just set it to
211 WSFederationUtils.sessionProvider.setProperty(session,
[all...]
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DMonitoredOperationsTest.java16 package com.iplanet.dpro.session.monitoring;
18 import com.iplanet.dpro.session.Session;
19 import com.iplanet.dpro.session.SessionException;
20 import com.iplanet.dpro.session.operations.SessionOperations;
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DMockInternalSession.java29 package com.iplanet.dpro.session.service;
H A DTestClusterStateService.java29 package com.iplanet.dpro.session.service;
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/share/
H A DSessionInfoTest.java17 package com.iplanet.dpro.session.share;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessSessionFactoryTest.java18 import com.iplanet.dpro.session.SessionID;
19 import com.iplanet.dpro.session.service.SessionServerConfig;
20 import com.iplanet.dpro.session.service.SessionServiceConfig;
21 import org.forgerock.openam.session.stateless.cache.StatelessJWTCache;
76 * could break agents and other software that expects to be able to decode session ids), we instead work around
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/cot/
H A DLogUtil.java140 * @param session the User's session object
143 String data[], Object session) {
146 logger.access(level, msgid, data, session);
192 * @param session the User's Session object.
195 String data[], Object session) {
198 logger.error(level, msgid, data, session);
142 access(Level level, String msgid, String data[], Object session) argument
194 error(Level level, String msgid, String data[], Object session) argument
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/session/
H A DOpenIDMSessionFactory.java16 package org.forgerock.openidm.workflow.activiti.impl.session;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/session/
H A DSMServlet.java29 package com.sun.identity.console.session;
42 public static final String DEFAULT_MODULE_URL = "../session";
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMProfileModel.java30 package com.sun.identity.console.session.model;
41 * session profile view bean.
54 * Invalidates list of session.
56 * @param list of session <code>ID</code>s.
58 * @return a list of session <code>ID</code>s that cannot be validated.
64 * Returns true if current user session state is valid.
66 * @return true is the session is valid.
71 * Returns session cache.
74 * @return session cache.
75 * @throws AMConsoleException if unable to get the session cach
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DCTSDataLayer.java27 import com.iplanet.dpro.session.service.SessionService;
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/
H A DLegacySessionIDExtensionsTest.java16 package com.iplanet.dpro.session;
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DMonitoredOperationsTest.java16 package com.iplanet.dpro.session.monitoring;
18 import com.iplanet.dpro.session.Session;
19 import com.iplanet.dpro.session.SessionException;
20 import com.iplanet.dpro.session.operations.SessionOperations;

Completed in 129 milliseconds

<<11121314151617181920>>