Searched refs:Cache (Results 1 - 25 of 79) sorted by relevance

1234

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/util/
H A DAgentCache.java33 import com.iplanet.am.util.Cache;
43 setCache(new Cache(size));
53 * the specified key is mapped in this Cache
67 * Maps the specified key to the specified value in this Cache. Neither the
73 * @param key - the Cache key. Should be a String
84 * Removes the key (and its corresponding value) from this Cache. This
85 * method does nothing if the key is not in the Cache.
97 * Tests if this Cache maps no keys to values
98 * @return true if this Cache maps no keys to values; false otherwise
107 * Tests if some key maps into the specified value String in this Cache
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyEvaluatorFactory.java34 import com.iplanet.am.util.Cache;
45 private Cache evaluatorCache;
52 evaluatorCache = new Cache(CACHE_SIZE);
H A DProxyPolicyEvaluatorFactory.java35 import com.iplanet.am.util.Cache;
51 private Cache evaluatorCache;
58 evaluatorCache = new Cache(CACHE_SIZE);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyEvaluatorFactory.java34 import com.iplanet.am.util.Cache;
45 private Cache evaluatorCache;
52 evaluatorCache = new Cache(CACHE_SIZE);
H A DProxyPolicyEvaluatorFactory.java35 import com.iplanet.am.util.Cache;
51 private Cache evaluatorCache;
58 evaluatorCache = new Cache(CACHE_SIZE);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DSAML2Store.java19 import org.forgerock.guava.common.cache.Cache;
30 private static Cache<String, Object> localCache = CacheBuilder.newBuilder().maximumSize(10000)
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DSAML2Store.java19 import org.forgerock.guava.common.cache.Cache;
30 private static Cache<String, Object> localCache = CacheBuilder.newBuilder().maximumSize(10000)
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/dispatch/
H A DMessageDispatcherFactory.java21 import org.forgerock.guava.common.cache.Cache;
41 Cache<String, MessagePromise> cache = CacheBuilder.newBuilder()
H A DMessageDispatcher.java22 import org.forgerock.guava.common.cache.Cache;
48 private final Cache<String, MessagePromise> cache;
52 * A message dispatcher which holds a Cache (a timeout-based Map) which contains the
59 public MessageDispatcher(Cache<String, MessagePromise> dispatch, @Named("frPush") Debug debug) {
86 debug.warning("Cache was asked to handle {} but never expected it.", messageId);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DIndexCache.java51 private Cache subjectIndexCache;
52 private Cache hostIndexCache;
53 private Cache pathIndexCache;
54 private Cache parentPathIndexCache;
87 private void cache(String dn, Set<String> indexes, Cache cache) {
129 private void clear(String dn, Set<String> indexes, Cache cache) {
146 subjectIndexCache = new Cache(SUBJECT_ID, initCapacity, size);
147 hostIndexCache = new Cache(HOST_ID, initCapacity, size);
148 pathIndexCache = new Cache(PATH_ID, initCapacity, size);
149 parentPathIndexCache = new Cache(PARENTPATH_I
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DIndexCache.java51 private Cache subjectIndexCache;
52 private Cache hostIndexCache;
53 private Cache pathIndexCache;
54 private Cache parentPathIndexCache;
87 private void cache(String dn, Set<String> indexes, Cache cache) {
129 private void clear(String dn, Set<String> indexes, Cache cache) {
146 subjectIndexCache = new Cache(SUBJECT_ID, initCapacity, size);
147 hostIndexCache = new Cache(HOST_ID, initCapacity, size);
148 pathIndexCache = new Cache(PATH_ID, initCapacity, size);
149 parentPathIndexCache = new Cache(PARENTPATH_I
[all...]
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/
H A DPushGuiceModule.java31 import org.forgerock.guava.common.cache.Cache;
48 * Generates a new Cache for the MessageDispatcher.
49 * @return a newly constructed Cache.
52 public Cache<String, MessagePromise> getMessageDispatchCache() {
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/caching/
H A DInMemoryInternalSessionCacheStep.java35 import org.forgerock.guava.common.cache.Cache;
63 private final AtomicStampedReference<Cache<String, InternalSession>> cache;
177 * The Guava {@link Cache#get(Object, Callable)} API is unnecessarily complicated, and so we try to hide the
214 private Cache<String, InternalSession> getCache() {
217 Cache<String, InternalSession> currentCache = cache.get(stampHolder);
225 final Cache<String, InternalSession> newCache = buildCache(newCacheSize);
241 private static Cache<String, InternalSession> buildCache(final int maxCacheSize) {
267 * Local marker exception for transporting null values through Guava's null-hostile Cache API. While it is "bad"
298 private enum EmptyCache implements Cache<String, InternalSession> {
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchFilterManager.java33 import com.iplanet.am.util.Cache;
49 * <b>NOTE:</b> This Cache does not recieve notifications right now. Hence,
52 * Cache already has store global default values corresponding to that AMObject
63 private static Cache searchfilterMap = new Cache(1000);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DOrgReferral.java38 import com.iplanet.am.util.Cache;
55 protected Cache cachedPolicyEvaluators = new Cache(50);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchFilterManager.java33 import com.iplanet.am.util.Cache;
49 * <b>NOTE:</b> This Cache does not recieve notifications right now. Hence,
52 * Cache already has store global default values corresponding to that AMObject
63 private static Cache searchfilterMap = new Cache(1000);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DRegExResourceName.java32 import com.iplanet.am.util.Cache;
51 private static Cache patternCache = new Cache(MAX_CACHE_SIZE);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DOrgReferral.java38 import com.iplanet.am.util.Cache;
55 protected Cache cachedPolicyEvaluators = new Cache(50);
/forgerock/openam/openam-push-notification/src/test/java/org/forgerock/openam/services/push/dispatch/
H A DMessageDispatcherTest.java24 import org.forgerock.guava.common.cache.Cache;
33 Cache cache = CacheBuilder.newBuilder().build();
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java25 * $Id: Cache.java,v 1.4 2008/06/27 20:56:21 arviranga Exp $
56 * The class <code>Cache</code> provides the functionality to cache objects
59 * <code>Cache</code> will be obtained from the config file <code>???</code>
67 * This class implements a Cache, which maps keys to values. Any
70 * To successfully store and retrieve objects from a Cache, the
74 * An instance of <code>Cache</code> has two parameters that affect its
82 * When the number of entries in the Cache exceeds the product of the load
89 * <tt>Cache</tt> operations, including <tt>get</tt> and <tt>put</tt>).<p>
95 * <tt>Cache</tt> will contain divided by its load factor. However,
98 * If many entries are to be made into a <code>Cache</cod
123 public class Cache extends Dictionary implements Map { class in inherits:Dictionary,Map
185 public Cache(int capacity, float loadFactor) { method in class:Cache
212 public Cache(int capacity) { method in class:Cache
222 public Cache() { method in class:Cache
[all...]
/forgerock/openam/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java25 * $Id: Cache.java,v 1.4 2008/06/27 20:56:21 arviranga Exp $
56 * The class <code>Cache</code> provides the functionality to cache objects
59 * <code>Cache</code> will be obtained from the config file <code>???</code>
67 * This class implements a Cache, which maps keys to values. Any
70 * To successfully store and retrieve objects from a Cache, the
74 * An instance of <code>Cache</code> has two parameters that affect its
82 * When the number of entries in the Cache exceeds the product of the load
89 * <tt>Cache</tt> operations, including <tt>get</tt> and <tt>put</tt>).<p>
95 * <tt>Cache</tt> will contain divided by its load factor. However,
98 * If many entries are to be made into a <code>Cache</cod
123 public class Cache extends Dictionary implements Map { class in inherits:Dictionary,Map
185 public Cache(int capacity, float loadFactor) { method in class:Cache
212 public Cache(int capacity) { method in class:Cache
222 public Cache() { method in class:Cache
[all...]
/forgerock/opendj2/ext/ant/lib/
H A Dant-junit4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-junit4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-junit4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-junit4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 2212 milliseconds

1234