Searched defs:getByRestrictedID (Results 1 - 11 of 11) sorted by relevance

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/
H A DInternalSessionStore.java48 InternalSession getByRestrictedID(SessionID sessionID) throws SessionPersistenceException; method in interface:InternalSessionStore
H A DAbstractInternalSessionStoreStep.java40 public InternalSession getByRestrictedID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException { method in class:AbstractInternalSessionStoreStep
41 return next.getByRestrictedID(sessionID);
H A DInternalSessionPersistenceStore.java52 public InternalSession getByRestrictedID(SessionID sessionID) { method in class:InternalSessionPersistenceStore
54 return sessionPersistenceStore.getByRestrictedID(sessionID);
H A DInternalSessionStoreChain.java49 public InternalSession getByRestrictedID(SessionID sessionID) throws SessionPersistenceException { method in class:InternalSessionStoreChain
50 return new ChainIterator().getByRestrictedID(sessionID);
86 public InternalSession getByRestrictedID(SessionID sessionID) throws SessionPersistenceException { method in class:InternalSessionStoreChain.ChainIterator
88 return iterator.next().getByRestrictedID(sessionID, this);
90 return store.getByRestrictedID(sessionID);
H A DInternalSessionStoreStep.java49 InternalSession getByRestrictedID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException; method in interface:InternalSessionStoreStep
H A DTimeOutSessionFilterStep.java47 public InternalSession getByRestrictedID( method in class:TimeOutSessionFilterStep
50 return processInternalSession(next.getByRestrictedID(sessionID));
H A DSessionPersistenceManagerStep.java53 public InternalSession getByRestrictedID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException { method in class:SessionPersistenceManagerStep
54 return setPersistenceManager(next.getByRestrictedID(sessionID));
H A DSessionPersistenceStore.java254 public InternalSession getByRestrictedID(SessionID sessionID) { method in class:SessionPersistenceStore
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSessionCache.java67 public InternalSession getByRestrictedID(SessionID sessionID) { method in class:InternalSessionCache
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/
H A DSessionAccessManager.java118 public InternalSession getByRestrictedID(SessionID sessionID) { method in class:SessionAccessManager
120 return internalSessionStore.getByRestrictedID(sessionID);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/caching/
H A DInMemoryInternalSessionCacheStep.java108 public InternalSession getByRestrictedID(final SessionID sessionID, final InternalSessionStore next) method in class:InMemoryInternalSessionCacheStep
113 return next.getByRestrictedID(sessionID);

Completed in 25 milliseconds