Searched defs:logoutStore (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStore.java39 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore; field in class:SessionMonitoringStore
63 this.logoutStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
74 * @param logoutStore Logout store
81 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore) {
88 this.logoutStore = logoutStore;
195 * Stores an entry in the logoutStore, offloading the work to another thread.
204 if (!logoutStore.containsKey(type)) {
205 logoutStore.putIfAbsent(type,
209 logoutStore
76 SessionMonitoringStore(ExecutorService executorService, SessionMonitoringTimingStoreFactory sessionMonitoringTimingStoreFactory, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStore.java39 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore; field in class:SessionMonitoringStore
63 this.logoutStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
74 * @param logoutStore Logout store
81 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore) {
88 this.logoutStore = logoutStore;
195 * Stores an entry in the logoutStore, offloading the work to another thread.
204 if (!logoutStore.containsKey(type)) {
205 logoutStore.putIfAbsent(type,
209 logoutStore
76 SessionMonitoringStore(ExecutorService executorService, SessionMonitoringTimingStoreFactory sessionMonitoringTimingStoreFactory, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore, ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> logoutStore) argument
[all...]
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStoreTest.java39 private ConcurrentHashMap logoutStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
171 given(logoutStore.containsKey(type)).willReturn(false);
172 given(logoutStore.get(type)).willReturn(timingStore);
190 given(logoutStore.containsKey(type)).willReturn(true);
191 given(logoutStore.get(type)).willReturn(timingStore);
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStoreTest.java39 private ConcurrentHashMap logoutStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
171 given(logoutStore.containsKey(type)).willReturn(false);
172 given(logoutStore.get(type)).willReturn(timingStore);
190 given(logoutStore.containsKey(type)).willReturn(true);
191 given(logoutStore.get(type)).willReturn(timingStore);

Completed in 30 milliseconds