Searched defs:getByHandle (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.java40 InternalSession getByHandle(String sessionHandle) throws SessionPersistenceException; method in interface:InternalSessionStore
H A DAbstractInternalSessionStoreStep.java35 public InternalSession getByHandle(String sessionHandle, InternalSessionStore next) throws SessionPersistenceException { method in class:AbstractInternalSessionStoreStep
36 return next.getByHandle(sessionHandle);
H A DInternalSessionPersistenceStore.java46 public InternalSession getByHandle(String sessionHandle) { method in class:InternalSessionPersistenceStore
H A DInternalSessionStoreChain.java44 public InternalSession getByHandle(String sessionHandle) throws SessionPersistenceException { method in class:InternalSessionStoreChain
45 return new ChainIterator().getByHandle(sessionHandle);
77 public InternalSession getByHandle(String sessionHandle) throws SessionPersistenceException { method in class:InternalSessionStoreChain.ChainIterator
79 return iterator.next().getByHandle(sessionHandle, this);
81 return store.getByHandle(sessionHandle);
H A DInternalSessionStoreStep.java41 InternalSession getByHandle(String sessionHandle, InternalSessionStore next) throws SessionPersistenceException; method in interface:InternalSessionStoreStep
H A DTimeOutSessionFilterStep.java40 public InternalSession getByHandle( method in class:TimeOutSessionFilterStep
43 return processInternalSession(next.getByHandle(sessionHandle));
H A DSessionPersistenceManagerStep.java48 public InternalSession getByHandle(String sessionHandle, InternalSessionStore next) throws SessionPersistenceException { method in class:SessionPersistenceManagerStep
49 return setPersistenceManager(next.getByHandle(sessionHandle));
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSessionCache.java63 public InternalSession getByHandle(String sessionHandle) { method in class:InternalSessionCache
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/caching/
H A DInMemoryInternalSessionCacheStep.java97 public InternalSession getByHandle(final String sessionHandle, final InternalSessionStore next) method in class:InMemoryInternalSessionCacheStep
102 return next.getByHandle(sessionHandle);

Completed in 43 milliseconds