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

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStore.java36 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore; field in class:SessionMonitoringStore
60 this.refreshStore = new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
71 * @param refreshStore Refresh store
78 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore,
85 this.refreshStore = refreshStore;
92 * Stores an entry in the refreshStore, offloading the work to another thread.
101 if (!refreshStore.containsKey(type)) {
102 refreshStore.putIfAbsent(type,
106 refreshStore
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.java36 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore; field in class:SessionMonitoringStore
60 this.refreshStore = new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
71 * @param refreshStore Refresh store
78 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> refreshStore,
85 this.refreshStore = refreshStore;
92 * Stores an entry in the refreshStore, offloading the work to another thread.
101 if (!refreshStore.containsKey(type)) {
102 refreshStore.putIfAbsent(type,
106 refreshStore
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.java37 private ConcurrentHashMap refreshStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
45 testSessionMonitoringStore = new SessionMonitoringStore(service, mockFactory, refreshStore,
57 given(refreshStore.containsKey(type)).willReturn(false);
58 given(refreshStore.get(type)).willReturn(timingStore);
76 given(refreshStore.containsKey(type)).willReturn(true);
77 given(refreshStore.get(type)).willReturn(timingStore);
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStoreTest.java37 private ConcurrentHashMap refreshStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
45 testSessionMonitoringStore = new SessionMonitoringStore(service, mockFactory, refreshStore,
57 given(refreshStore.containsKey(type)).willReturn(false);
58 given(refreshStore.get(type)).willReturn(timingStore);
76 given(refreshStore.containsKey(type)).willReturn(true);
77 given(refreshStore.get(type)).willReturn(timingStore);

Completed in 28 milliseconds