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

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStore.java37 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore; field in class:SessionMonitoringStore
61 this.propertyStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
72 * @param propertyStore Property store
79 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore,
86 this.propertyStore = propertyStore;
126 * Stores an entry in the propertyStore, offloading the work to another thread.
135 if (!propertyStore.containsKey(type)) {
136 propertyStore.putIfAbsent(type,
140 propertyStore
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.java37 private final ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore; field in class:SessionMonitoringStore
61 this.propertyStore= new ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore>();
72 * @param propertyStore Property store
79 ConcurrentHashMap<SessionMonitorType, SessionMonitoringTimingStore> propertyStore,
86 this.propertyStore = propertyStore;
126 * Stores an entry in the propertyStore, offloading the work to another thread.
135 if (!propertyStore.containsKey(type)) {
136 propertyStore.putIfAbsent(type,
140 propertyStore
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.java40 private ConcurrentHashMap propertyStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
133 given(propertyStore.containsKey(type)).willReturn(false);
134 given(propertyStore.get(type)).willReturn(timingStore);
152 given(propertyStore.containsKey(type)).willReturn(true);
153 given(propertyStore.get(type)).willReturn(timingStore);
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringStoreTest.java40 private ConcurrentHashMap propertyStore = mock(ConcurrentHashMap.class); field in class:SessionMonitoringStoreTest
46 propertyStore, destroyStore, logoutStore);
133 given(propertyStore.containsKey(type)).willReturn(false);
134 given(propertyStore.get(type)).willReturn(timingStore);
152 given(propertyStore.containsKey(type)).willReturn(true);
153 given(propertyStore.get(type)).willReturn(timingStore);

Completed in 29 milliseconds