Searched refs:cacheKey (Results 1 - 25 of 59) sorted by relevance

123

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/meta/
H A DSAML2MetaCache.java69 String cacheKey = buildCacheKey(realm, entityId);
71 (EntityDescriptorElement)descriptorCache.get(cacheKey);
73 debug.message("SAML2MetaCache.getEntityDescriptor: cacheKey = " +
74 cacheKey + ", found = " + (descriptor != null));
88 String cacheKey = buildCacheKey(realm, entityId);
91 debug.message("SAML2MetaCache.putEntityDescriptor: cacheKey = " +
92 cacheKey);
94 descriptorCache.put(cacheKey, descriptor);
99 cacheKey);
101 descriptorCache.remove(cacheKey);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/meta/
H A DWSFederationMetaCache.java64 String cacheKey = buildCacheKey(realm, federationId);
66 (FederationElement)federationCache.get(cacheKey);
69 "cacheKey = " + cacheKey + ", found = " + (federation != null));
83 String cacheKey = buildCacheKey(realm, federationId);
87 "cacheKey = " + cacheKey);
89 federationCache.put(cacheKey, federation);
94 cacheKey);
96 federationCache.remove(cacheKey);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/meta/
H A DSAML2MetaCache.java69 String cacheKey = buildCacheKey(realm, entityId);
71 (EntityDescriptorElement)descriptorCache.get(cacheKey);
73 debug.message("SAML2MetaCache.getEntityDescriptor: cacheKey = " +
74 cacheKey + ", found = " + (descriptor != null));
88 String cacheKey = buildCacheKey(realm, entityId);
91 debug.message("SAML2MetaCache.putEntityDescriptor: cacheKey = " +
92 cacheKey);
94 descriptorCache.put(cacheKey, descriptor);
99 cacheKey);
101 descriptorCache.remove(cacheKey);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/meta/
H A DWSFederationMetaCache.java64 String cacheKey = buildCacheKey(realm, federationId);
66 (FederationElement)federationCache.get(cacheKey);
69 "cacheKey = " + cacheKey + ", found = " + (federation != null));
83 String cacheKey = buildCacheKey(realm, federationId);
87 "cacheKey = " + cacheKey);
89 federationCache.put(cacheKey, federation);
94 cacheKey);
96 federationCache.remove(cacheKey);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/liberty/jaxrpc/
H A DLibertyClientSSOTokenListener.java53 String cacheKey = tokenID + LibertyManagerClient.DISCO_RO;
58 if (LibertyManagerClient.bootStrapCache.containsKey(cacheKey)) {
59 LibertyManagerClient.bootStrapCache.remove(cacheKey);
62 cacheKey = tokenID + LibertyManagerClient.DISCO_CRED;
63 if (LibertyManagerClient.bootStrapCache.containsKey(cacheKey)) {
64 LibertyManagerClient.bootStrapCache.remove(cacheKey);
H A DLibertyManagerClient.java87 String cacheKey = tokenID + DISCO_RO;
89 (ResourceOffering)bootStrapCache.get(cacheKey);
112 bootStrapCache.put(cacheKey, ro);
152 String cacheKey = tokenID + DISCO_CRED;
154 (SecurityAssertion)bootStrapCache.get(cacheKey);
173 bootStrapCache.put(cacheKey, cred);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/liberty/jaxrpc/
H A DLibertyClientSSOTokenListener.java53 String cacheKey = tokenID + LibertyManagerClient.DISCO_RO;
58 if (LibertyManagerClient.bootStrapCache.containsKey(cacheKey)) {
59 LibertyManagerClient.bootStrapCache.remove(cacheKey);
62 cacheKey = tokenID + LibertyManagerClient.DISCO_CRED;
63 if (LibertyManagerClient.bootStrapCache.containsKey(cacheKey)) {
64 LibertyManagerClient.bootStrapCache.remove(cacheKey);
H A DLibertyManagerClient.java87 String cacheKey = tokenID + DISCO_RO;
89 (ResourceOffering)bootStrapCache.get(cacheKey);
112 bootStrapCache.put(cacheKey, ro);
152 String cacheKey = tokenID + DISCO_CRED;
154 (SecurityAssertion)bootStrapCache.get(cacheKey);
173 bootStrapCache.put(cacheKey, cred);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyPairProviderImpl.java41 CacheKey cacheKey = new CacheKey(algorithm, keySize);
42 KeyPair keyPair = keyPairCache.get(cacheKey);
46 keyPair = keyPairCache.get(cacheKey);
50 keyPairCache.put(cacheKey, keyPair);
86 CacheKey cacheKey = (CacheKey) other;
87 return Objects.equals(keySize, cacheKey.keySize)
88 && Objects.equals(algorithm, cacheKey.algorithm);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyPairProviderImpl.java41 CacheKey cacheKey = new CacheKey(algorithm, keySize);
42 KeyPair keyPair = keyPairCache.get(cacheKey);
46 keyPair = keyPairCache.get(cacheKey);
50 keyPairCache.put(cacheKey, keyPair);
86 CacheKey cacheKey = (CacheKey) other;
87 return Objects.equals(keySize, cacheKey.keySize)
88 && Objects.equals(algorithm, cacheKey.algorithm);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMNamingAttrManager.java61 String cacheKey = (new Integer(objectType)).toString() + ":"
63 if (namingAttrMap.containsKey(cacheKey)) {
64 return ((String) namingAttrMap.get(cacheKey));
71 namingAttrMap.put(cacheKey, nAttr);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMNamingAttrManager.java61 String cacheKey = (new Integer(objectType)).toString() + ":"
63 if (namingAttrMap.containsKey(cacheKey)) {
64 return ((String) namingAttrMap.get(cacheKey));
71 namingAttrMap.put(cacheKey, nAttr);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/cot/
H A DCOTCache.java60 String cacheKey = buildCacheKey(realm, name);
62 (CircleOfTrustDescriptor)cotCache.get(cacheKey);
64 COTUtils.debug.message(classMethod + "cacheKey = " + cacheKey +
81 String cacheKey = buildCacheKey(realm, name);
84 debug.message(classMethod + ": cacheKey = " + cacheKey);
86 cotCache.put(cacheKey, cotDescriptor);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/cot/
H A DCOTCache.java60 String cacheKey = buildCacheKey(realm, name);
62 (CircleOfTrustDescriptor)cotCache.get(cacheKey);
64 COTUtils.debug.message(classMethod + "cacheKey = " + cacheKey +
81 String cacheKey = buildCacheKey(realm, name);
84 debug.message(classMethod + ": cacheKey = " + cacheKey);
86 cotCache.put(cacheKey, cotDescriptor);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/meta/
H A DIDFFMetaCache.java71 String cacheKey = buildCacheKey(realm, entityID);
73 (EntityDescriptorElement)entityDescriptorCache.get(cacheKey);
77 + cacheKey );
80 + cacheKey );
96 String cacheKey = buildCacheKey(realm, entityID);
98 entityDescriptorCache.put(cacheKey,entityDescriptor);
100 entityDescriptorCache.remove(cacheKey);
101 entityConfigCache.remove(cacheKey);
116 String cacheKey = buildCacheKey(realm, entityID);
118 (EntityConfigElement)entityConfigCache.get(cacheKey);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/meta/
H A DIDFFMetaCache.java71 String cacheKey = buildCacheKey(realm, entityID);
73 (EntityDescriptorElement)entityDescriptorCache.get(cacheKey);
77 + cacheKey );
80 + cacheKey );
96 String cacheKey = buildCacheKey(realm, entityID);
98 entityDescriptorCache.put(cacheKey,entityDescriptor);
100 entityDescriptorCache.remove(cacheKey);
101 entityConfigCache.remove(cacheKey);
116 String cacheKey = buildCacheKey(realm, entityID);
118 (EntityConfigElement)entityConfigCache.get(cacheKey);
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java52 CacheKey cacheKey = (CacheKey) other;
53 return Objects.equals(source, cacheKey.source) &&
54 Objects.equals(realm, cacheKey.realm);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java52 CacheKey cacheKey = (CacheKey) other;
53 return Objects.equals(source, cacheKey.source) &&
54 Objects.equals(realm, cacheKey.realm);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DCachingEntitlementCondition.java107 final String cacheKey = backingCondition.getClass().getName() + getState();
111 .get(cacheKey);
122 + "\" for condition: " + cacheKey);
124 context.getConditionDecisionCache().put(cacheKey, result);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DCachingEntitlementCondition.java107 final String cacheKey = backingCondition.getClass().getName() + getState();
111 .get(cacheKey);
122 + "\" for condition: " + cacheKey);
124 context.getConditionDecisionCache().put(cacheKey, result);
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DFileStateChecker.java72 Path cacheKey = newFile;
74 checksum.remove(cacheKey);
76 checksum.put(cacheKey, checksum.getCurrentDigest(newFile));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyCache.java200 String cacheKey = buildCacheKey(orgName, policyName);
206 .append("cacheKey=").append(cacheKey);
209 return getPolicy(cacheKey);
212 /** Gets a policy from the cache for the given the cacheKey.
215 * @param cacheKey cache key
218 Policy getPolicy(String cacheKey) { argument
224 if ( policies.containsKey(cacheKey) ) {
225 policy = (Policy) policies.get(cacheKey);
229 + cacheKey);
246 refreshPolicy(String cacheKey) argument
510 tokenizeCacheKey(String cacheKey) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyCache.java191 String cacheKey = buildCacheKey(orgName, policyName);
197 .append("cacheKey=").append(cacheKey);
200 return getPolicy(cacheKey);
203 /** Gets a policy from the cache for the given the cacheKey.
206 * @param cacheKey cache key
209 Policy getPolicy(String cacheKey) { argument
215 if ( policies.containsKey(cacheKey) ) {
216 policy = (Policy) policies.get(cacheKey);
220 + cacheKey);
237 refreshPolicy(String cacheKey) argument
501 tokenizeCacheKey(String cacheKey) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DResourceLookup.java81 String cacheKey = new StringBuffer(fileRoot).append(":").append(locale)
87 resourceName = RESOURCE_NAME_CACHE.get(cacheKey);
117 RESOURCE_NAME_CACHE.put(cacheKey, resourceName);
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/spi/handlers/amhandler/
H A DContextHolder.java133 private final String cacheKey; field in class:ContextHolder
146 this.cacheKey = key;
334 return this.cacheKey;

Completed in 147 milliseconds

123