Searched defs:getBySessionID (Results 1 - 9 of 9) sorted by relevance

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/
H A DInternalSessionStore.java32 InternalSession getBySessionID(SessionID sessionID) throws SessionPersistenceException; method in interface:InternalSessionStore
H A DAbstractInternalSessionStoreStep.java30 public InternalSession getBySessionID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException { method in class:AbstractInternalSessionStoreStep
31 return next.getBySessionID(sessionID);
H A DInternalSessionPersistenceStore.java40 public InternalSession getBySessionID(SessionID sessionID) { method in class:InternalSessionPersistenceStore
H A DInternalSessionStoreChain.java39 public InternalSession getBySessionID(SessionID sessionID) throws SessionPersistenceException { method in class:InternalSessionStoreChain
40 return new ChainIterator().getBySessionID(sessionID);
68 public InternalSession getBySessionID(SessionID sessionID) throws SessionPersistenceException { method in class:InternalSessionStoreChain.ChainIterator
70 return iterator.next().getBySessionID(sessionID, this);
72 return store.getBySessionID(sessionID);
H A DInternalSessionStoreStep.java33 InternalSession getBySessionID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException; method in interface:InternalSessionStoreStep
H A DTimeOutSessionFilterStep.java33 public InternalSession getBySessionID( method in class:TimeOutSessionFilterStep
36 return processInternalSession(next.getBySessionID(sessionID));
H A DSessionPersistenceManagerStep.java43 public InternalSession getBySessionID(SessionID sessionID, InternalSessionStore next) throws SessionPersistenceException { method in class:SessionPersistenceManagerStep
44 return setPersistenceManager(next.getBySessionID(sessionID));
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSessionCache.java59 public InternalSession getBySessionID(SessionID sessionID) { method in class:InternalSessionCache
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/caching/
H A DInMemoryInternalSessionCacheStep.java86 public InternalSession getBySessionID(final SessionID sessionID, final InternalSessionStore next) method in class:InMemoryInternalSessionCacheStep
91 return next.getBySessionID(sessionID);

Completed in 25 milliseconds