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

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStore.java38 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore; field in class:SessionMonitoringStore
62 this.destroyStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
73 * @param destroyStore Destroy store
80 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore,
87 this.destroyStore = destroyStore;
160 * Stores an entry in the destroyStore, offloading the work to another thread.
169 if (!destroyStore.containsKey(type)) {
170 destroyStore.putIfAbsent(type,
174 destroyStore
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.java38 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore; field in class:SessionMonitoringStore
62 this.destroyStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
73 * @param destroyStore Destroy store
80 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> destroyStore,
87 this.destroyStore = destroyStore;
160 * Stores an entry in the destroyStore, offloading the work to another thread.
169 if (!destroyStore.containsKey(type)) {
170 destroyStore.putIfAbsent(type,
174 destroyStore
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.java38 private ConcurrentHashMap destroyStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
95 given(destroyStore.containsKey(type)).willReturn(false);
96 given(destroyStore.get(type)).willReturn(timingStore);
114 given(destroyStore.containsKey(type)).willReturn(true);
115 given(destroyStore.get(type)).willReturn(timingStore);
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStoreTest.java38 private ConcurrentHashMap destroyStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
95 given(destroyStore.containsKey(type)).willReturn(false);
96 given(destroyStore.get(type)).willReturn(timingStore);
114 given(destroyStore.containsKey(type)).willReturn(true);
115 given(destroyStore.get(type)).willReturn(timingStore);

Completed in 30 milliseconds