Searched refs:session (Results 601 - 625 of 1175) sorted by relevance

<<21222324252627282930>>

/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java180 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
183 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
226 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
253 private Session session = null; field in class:AssuredReplicationPluginTest.FakeReplicationServer
364 // Create client session
367 session = replSessionSecurity.createServerSession(newSocket,
369 if (session == null) // Error, go back to accept
411 if (session != null)
413 session.close();
434 ServerStartMsg serverStartMsg = (ServerStartMsg) session
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSAssertionArtifactHandler.java71 import com.sun.identity.plugin.session.SessionException;
72 import com.sun.identity.plugin.session.SessionManager;
73 import com.sun.identity.plugin.session.SessionProvider;
1305 "Couldn't add listener to session:", e);
1320 //keep local session ref
1323 FSSession session = sessionManager.getSession(userID, value);
1324 if (session != null){
1327 + "generateToken: An Existing session found for userID:"
1331 session.addSessionPartner(new FSSessionPartner(
1333 session
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSAssertionArtifactHandler.java73 import com.sun.identity.plugin.session.SessionException;
74 import com.sun.identity.plugin.session.SessionManager;
75 import com.sun.identity.plugin.session.SessionProvider;
1307 "Couldn't add listener to session:", e);
1322 //keep local session ref
1325 FSSession session = sessionManager.getSession(userID, value);
1326 if (session != null){
1329 + "generateToken: An Existing session found for userID:"
1333 session.addSessionPartner(new FSSessionPartner(
1335 session
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthenticationAccessAuditFilter.java31 import com.iplanet.dpro.session.SessionID;
32 import com.iplanet.dpro.session.service.InternalSession;
156 debug.warning("No session ID found when trying to audit an authentication request.");
161 InternalSession session = AuthD.getSession(new SessionID(sessionId));
162 return session == null ? "" : session.getProperty(Constants.AM_CTX_ID);
/forgerock/web-agents-v4/tests/
H A Dtest_notifications.c56 //option - invalidate session by sid ( state must be present, not is not used )
58 //" <Session sid='my-session' state='destroyed' />"
61 //these can't be removed by resource from the session cache
121 //option - invalidate session by sid ( state must be present, not is not used )
123 //" <Session sid='my-session' state='destroyed' />"
126 //these can't be removed by resource from the session cache
294 struct am_namevalue * session = NULL; local
314 /* find the session */
315 assert_int_equal(am_get_session_policy_cache_entry(&request, session_id, &r, &session, &ets), AM_SUCCESS);
324 assert_int_equal(am_get_session_policy_cache_entry(&request, session_id, &r, &session,
444 struct am_namevalue * session = NULL; local
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthenticationAccessAuditFilter.java31 import com.iplanet.dpro.session.SessionID;
32 import com.iplanet.dpro.session.service.InternalSession;
156 debug.warning("No session ID found when trying to audit an authentication request.");
161 InternalSession session = AuthD.getSession(new SessionID(sessionId));
162 return session == null ? "" : session.getProperty(Constants.AM_CTX_ID);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DLoginState.java77 import org.forgerock.openam.session.SessionURL;
78 import org.forgerock.openam.session.service.SessionAccessManager;
90 import com.iplanet.dpro.session.SessionException;
91 import com.iplanet.dpro.session.SessionID;
92 import com.iplanet.dpro.session.service.AuthenticationSessionStore;
93 import com.iplanet.dpro.session.service.InternalSession;
94 import com.iplanet.dpro.session.service.SessionState;
95 import com.iplanet.dpro.session.service.SessionType;
125 import com.sun.identity.session.util.SessionUtils;
140 * OpenAM system or the session i
1138 setOldStatelessSession(StatelessSession session) argument
1148 setSessionProperties(InternalSession session) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java208 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
211 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
253 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
280 private Session session = null; field in class:AssuredReplicationPluginTest.FakeReplicationServer
393 // Create client session
396 session = replSessionSecurity.createServerSession(newSocket,
398 if (session == null) // Error, go back to accept
440 if (session != null)
442 session.close();
461 ServerStartMsg serverStartMsg = (ServerStartMsg) session
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java208 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
211 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
253 // heartbeat = 10 min so no need to emulate heartbeat in fake RS: session
280 private Session session = null; field in class:AssuredReplicationPluginTest.FakeReplicationServer
393 // Create client session
396 session = replSessionSecurity.createServerSession(newSocket,
398 if (session == null) // Error, go back to accept
440 if (session != null)
442 session.close();
461 ServerStartMsg serverStartMsg = (ServerStartMsg) session
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/logout/
H A DFSLogoutUtil.java53 import com.sun.identity.plugin.session.SessionException;
54 import com.sun.identity.plugin.session.SessionManager;
55 import com.sun.identity.plugin.session.SessionProvider;
78 * Destroys the principal's session.
79 * In order to destroy the user's session the following things need
83 * @param userID the principal whose session needs to be destroyed
85 * @param sessionIndex Session Index of the user session.
88 * @return <code>true</code> if session cleanup was successful;
107 // Invalidate all such session ids
108 // session manage
271 cleanSessionMapPartnerList( String userDN, String currentEntityId, String metaAlias, FSSession session) argument
334 cleanSessionMap( String userDn, String metaAlias, FSSession session) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/logout/
H A DFSLogoutUtil.java53 import com.sun.identity.plugin.session.SessionException;
54 import com.sun.identity.plugin.session.SessionManager;
55 import com.sun.identity.plugin.session.SessionProvider;
78 * Destroys the principal's session.
79 * In order to destroy the user's session the following things need
83 * @param userID the principal whose session needs to be destroyed
85 * @param sessionIndex Session Index of the user session.
88 * @return <code>true</code> if session cleanup was successful;
107 // Invalidate all such session ids
108 // session manage
271 cleanSessionMapPartnerList( String userDN, String currentEntityId, String metaAlias, FSSession session) argument
334 cleanSessionMap( String userDn, String metaAlias, FSSession session) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionConstraint.java29 package com.iplanet.dpro.session.service;
31 import static com.iplanet.dpro.session.service.SessionConstants.SESSION_DEBUG;
46 import org.forgerock.openam.session.service.DestroyOldestAction;
49 * <code>SessionConstraint</code> represents the session quota for a given user
50 * and performs the necessary actions based on the session quota limit, If the
51 * user reaches maximum allowed session limit , the activation request of
52 * new session should be rejected.
54 * If this is the "session upgarde" case, the session quota
55 * checking is bypassed when activating the new session
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityTokenManagerImpl.java37 import com.sun.identity.plugin.session.SessionManager;
61 * @param sessionID the session id.
66 Object session =
68 securityTokenManager = new SecurityTokenManager(session);
131 * @param invocatorSession the session identifier
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/liberty/jaxrpc/
H A DLibertyManagerClient.java43 import com.sun.identity.plugin.session.SessionException;
44 import com.sun.identity.plugin.session.SessionManager;
45 import com.sun.identity.plugin.session.SessionProvider;
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DWebtopNamingSiteUtilsTest.java16 package com.iplanet.dpro.session.service;
18 import com.iplanet.dpro.session.Session;
19 import com.iplanet.dpro.session.SessionID;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/session/blacklist/
H A DBloomFilterSessionBlacklistTest.java17 package org.forgerock.openam.session.blacklist;
25 import com.iplanet.dpro.session.Session;
26 import com.iplanet.dpro.session.service.SessionServiceConfig;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/session/stateless/cache/
H A DStatelessJWTCacheTest.java16 package org.forgerock.openam.session.stateless.cache;
27 import org.forgerock.openam.session.stateless.StatelessConfig;
33 import com.iplanet.dpro.session.share.SessionInfo;
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DOpenIDMELResolver.java34 import org.forgerock.openidm.workflow.activiti.impl.session.OpenIDMSession;
57 OpenIDMSession session = Context.getCommandContext().getSession(OpenIDMSession.class);
58 scriptRegistry = session.getOpenIDMScriptRegistry();
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionAuditor.java16 package com.iplanet.dpro.session.service;
40 import org.forgerock.openam.session.SessionEventType;
42 import com.iplanet.dpro.session.share.SessionInfo;
105 // ignore other session events
H A DSessionConstraint.java31 package com.iplanet.dpro.session.service;
39 import org.forgerock.openam.session.service.DestroyOldestAction;
40 import org.forgerock.openam.session.service.access.SessionQueryManager;
54 * <code>SessionConstraint</code> represents the session quota for a given user
55 * and performs the necessary actions based on the session quota limit, If the
56 * user reaches maximum allowed session limit , the activation request of
57 * new session should be rejected.
59 * If this is the "session upgarde" case, the session quota
60 * checking is bypassed when activating the new session
[all...]
H A DSessionLogging.java30 package com.iplanet.dpro.session.service;
41 import org.forgerock.openam.session.SessionEventType;
44 import com.iplanet.dpro.session.share.SessionInfo;
151 sessionDebug.error("SessionService.logIt(): Cannot write to the session log file: ", ex);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/
H A DCoreTokenConfig.java28 import com.iplanet.dpro.session.service.InternalSession;
194 * @param session Non null.
197 public String getUserId(InternalSession session) { argument
199 String userId = session.getUUID();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/dpro/session/
H A DPartialSession.java16 package org.forgerock.openam.dpro.session;
20 import static org.forgerock.openam.session.SessionConstants.*;
25 import org.forgerock.openam.session.SessionConstants;
31 * The JSON representation of partially described session objects.
72 * Returns the username associated with this partial session.
81 * Returns the universal ID associated with this partial session.
83 * @return The universal ID of the user this partial session belongs to.
90 * Returns the realm associated with this partial session.
92 * @return The realm where this session was created.
99 * Returns the session handl
[all...]
H A DPartialSessionFactory.java17 package org.forgerock.openam.dpro.session;
28 import org.forgerock.openam.dpro.session.PartialSession.Builder;
30 import org.forgerock.openam.session.SessionConstants;
101 * @param ssoToken The SSO token representation to convert to partial session.
121 debug.warning("Unable to convert SSOToken to Partial session", ssoe);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/watchers/
H A DSessionModificationWatcher.java17 package org.forgerock.openam.session.service.access.persistence.watchers;
39 import org.forgerock.openam.session.SessionConstants;
45 import com.iplanet.dpro.session.SessionID;
123 throw new RuntimeException("Unable to register continuous query for session cache invalidation", ctE);

Completed in 79 milliseconds

<<21222324252627282930>>