Searched defs:sessions (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/service/
H A DDenyAccessAction.java37 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
H A DDestroyAllAction.java43 * This action will invalidate all currently existing sessions, but it will
65 public boolean action(InternalSession is, Map sessions) { argument
66 Set<String> sids = sessions.keySet();
67 debug.message("there are " + sids.size() + " sessions");
68 synchronized (sessions) {
H A DDestroyNextExpiringAction.java56 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
60 for (Map.Entry<String, Long> entry : sessions.entrySet()) {
H A DDestroyOldestAction.java40 * This action retrieves all the sessions using the Session service and
62 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
65 for (Map.Entry<String, Long> entry : sessions.entrySet()) {
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/
H A DDenyAccessAction.java37 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
H A DDestroyAllAction.java43 * This action will invalidate all currently existing sessions, but it will
65 public boolean action(InternalSession is, Map sessions) { argument
66 Set<String> sids = sessions.keySet();
67 debug.message("there are " + sids.size() + " sessions");
68 synchronized (sessions) {
H A DDestroyNextExpiringAction.java56 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
60 for (Map.Entry<String, Long> entry : sessions.entrySet()) {
H A DDestroyOldestAction.java40 * This action retrieves all the sessions using the Session service and
62 public boolean action(InternalSession is, Map<String, Long> sessions) { argument
65 for (Map.Entry<String, Long> entry : sessions.entrySet()) {
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMSessionCache.java53 private List sessions = new ArrayList(); field in class:SMSessionCache
58 * @param sessions Collection of sessions.
63 Collection sessions,
68 Map mapSessions = retainSessionsWithUserID(sessions, modelImpl);
87 return sessions;
95 sessions.add(mapSessions.get(sorted.get(i)));
104 Collection sessions,
107 Map results = new HashMap(sessions.size() *2);
109 for (Iterator iter = sessions
62 SMSessionCache( Collection sessions, String searchErrorMsg, SMProfileModelImpl modelImpl ) argument
103 retainSessionsWithUserID( Collection sessions, SMProfileModelImpl modelImpl ) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMSessionCache.java53 private List sessions = new ArrayList(); field in class:SMSessionCache
58 * @param sessions Collection of sessions.
63 Collection sessions,
68 Map mapSessions = retainSessionsWithUserID(sessions, modelImpl);
87 return sessions;
95 sessions.add(mapSessions.get(sorted.get(i)));
104 Collection sessions,
107 Map results = new HashMap(sessions.size() *2);
109 for (Iterator iter = sessions
62 SMSessionCache( Collection sessions, String searchErrorMsg, SMProfileModelImpl modelImpl ) argument
103 retainSessionsWithUserID( Collection sessions, SMProfileModelImpl modelImpl ) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionResponse.java272 * @param sessions number for sessions for the user.
274 public void setSessionsForGivenUUID(Map sessions) { argument
275 allSessionsforGivenUUID = sessions;
281 * @return list sessions for the user
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionResponse.java272 * @param sessions number for sessions for the user.
274 public void setSessionsForGivenUUID(Map sessions) { argument
275 allSessionsforGivenUUID = sessions;
281 * @return list sessions for the user
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSessionManager.java338 * Returns list of sessions associated with <code>userID</code>.
340 * @return list of sessions
350 * @param sessionList list of sessions to be set
380 List sessions = getSessionList (userID);
381 if (sessions != null){
382 synchronized (sessions) {
383 Iterator i = sessions.iterator ();
396 * Returns the session in <code>sessions</code> whose session index is
398 * @param sessions list of <code>FSSession</code>s.
403 public FSSession getSession(List sessions, Strin argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSessionManager.java341 * Returns list of sessions associated with <code>userID</code>.
343 * @return list of sessions
353 * @param sessionList list of sessions to be set
383 List sessions = getSessionList (userID);
384 if (sessions != null){
385 synchronized (sessions) {
386 Iterator i = sessions.iterator ();
399 * Returns the session in <code>sessions</code> whose session index is
401 * @param sessions list of <code>FSSession</code>s.
406 public FSSession getSession(List sessions, Strin argument
[all...]

Completed in 80 milliseconds