Searched refs:CachedSMSEntry (Results 1 - 25 of 42) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DCachedSMSEntry.java25 * $Id: CachedSMSEntry.java,v 1.16 2009/10/08 20:33:54 hengming Exp $
55 public class CachedSMSEntry { class
96 private CachedSMSEntry(SMSEntry e) { method in class:CachedSMSEntry
114 SMSEntry.debug.message("CachedSMSEntry: New instance: " + dn);
144 SMSEntry.debug.message("CachedSMSEntry: update "
159 SMSEntry.debug.message("CachedSMSEntry: refresh "
173 SMSEntry.debug.warning("CachedSMSEntry:update No VALID " +
215 * Called by the SMS objects that have an instance of CachedSMSEntry
277 SMSEntry.debug.message("CachedSMSEntry::updateServiceListeners "
295 SMSEntry.debug.error("CachedSMSEntry
[all...]
H A DPluginConfigImpl.java59 private CachedSMSEntry smsEntry;
64 private PluginConfigImpl(PluginSchemaImpl ps, CachedSMSEntry entry,
180 // Deregister from CachedSMSEntry
220 CachedSMSEntry entry = checkAndUpdatePermission(cacheName, dn,
255 // CachedSMSEntry is invalid, so create a new PluginConfigImpl
271 static synchronized CachedSMSEntry checkAndUpdatePermission(
274 CachedSMSEntry answer = CachedSMSEntry.getInstance(token, dn);
H A DServiceInstanceImpl.java55 private CachedSMSEntry smsEntry;
60 private ServiceInstanceImpl(String name, CachedSMSEntry entry) {
173 CachedSMSEntry entry = checkAndUpdatePermission(cName,
210 // CachedSMSEntry is invalid. Recreate this instance
225 static synchronized CachedSMSEntry checkAndUpdatePermission(
235 CachedSMSEntry entry = CachedSMSEntry.getInstance(t, dn);
H A DCachedSubEntries.java54 protected CachedSMSEntry cachedEntry;
64 cachedEntry = CachedSMSEntry.getInstance(t, dn);
98 if (CachedSMSEntry.ttlEnabled && ((System.currentTimeMillis() -
99 lastUpdated) > CachedSMSEntry.ttl)) {
H A DSMSPropertiesObserver.java78 CachedSMSEntry.initializeProperties();
H A DServiceConfig.java401 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, sdn);
883 CachedSMSEntry entry = CachedSMSEntry.getInstance(token, dn);
890 CachedSMSEntry pEntry = CachedSMSEntry.getInstance(token, pDN);
908 CachedSMSEntry entry = CachedSMSEntry.getInstance(token, dn);
915 CachedSMSEntry pEntry = CachedSMSEntry
[all...]
H A DOrganizationConfigManagerImpl.java61 private CachedSMSEntry smsEntry;
77 private OrganizationConfigManagerImpl(CachedSMSEntry entry,
419 CachedSMSEntry cEntry =
464 private static CachedSMSEntry checkAndUpdatePermission(String cacheName,
466 CachedSMSEntry answer = CachedSMSEntry.getInstance(t, cacheName);
H A DPluginSchemaImpl.java69 CachedSMSEntry smsEntry;
83 // Construct the DN and get CachedSMSEntry
90 smsEntry = CachedSMSEntry.getInstance(token, sb.toString()
103 smsEntry = CachedSMSEntry.getInstance(token, sb.toString()
161 CachedSMSEntry getCachedSMSEntry() {
303 // Deregister itself from CachedSMSEntry
H A DPluginSchema.java294 CachedSMSEntry smsEntry = psi.getCachedSMSEntry();
336 CachedSMSEntry ce = CachedSMSEntry.getInstance(token, dn);
H A DServiceManager.java684 // Construct the DN and get CachedSMSEntry
691 CachedSMSEntry ce;
694 ce = CachedSMSEntry.getInstance(token, sb.toString()
748 CachedSMSEntry configsmse = CachedSMSEntry.getInstance(token,
760 CachedSMSEntry smse = CachedSMSEntry.getInstance(token, dn);
799 CachedSMSEntry ce = CachedSMSEntry.getInstance(token,
915 CachedSMSEntry
[all...]
H A DServiceConfigManager.java351 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, orgDN);
445 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, gdn);
518 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, odn);
553 CachedSMSEntry.getInstance(token, sb.toString());
H A DServiceConfigImpl.java87 private CachedSMSEntry smsEntry;
99 ServiceSchemaImpl ss, CachedSMSEntry entry, String orgName,
350 // Deregister from CachedSMSEntry
352 // Invalidate CachedSMSEntry
529 CachedSMSEntry entry = checkAndUpdatePermission(cacheName, dn, token);
643 static CachedSMSEntry checkAndUpdatePermission(
646 CachedSMSEntry answer = CachedSMSEntry.getInstance(t, dn);
686 // notification mechanism in CachedSMSEntry
H A DOrganizationConfigManager.java604 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token,
694 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token,
808 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token,
877 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token,
1015 CachedSMSEntry cEntry = CachedSMSEntry
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DCachedSMSEntry.java25 * $Id: CachedSMSEntry.java,v 1.16 2009/10/08 20:33:54 hengming Exp $
57 public class CachedSMSEntry implements SMSEventListener { class in inherits:SMSEventListener
97 private CachedSMSEntry(SMSEntry e) { method in class:CachedSMSEntry
114 SMSEntry.debug.message("CachedSMSEntry: New instance: " + dn);
144 SMSEntry.debug.message("CachedSMSEntry: update "
159 SMSEntry.debug.message("CachedSMSEntry: refresh "
173 SMSEntry.debug.warning("CachedSMSEntry:update No VALID " +
214 * Called by the SMS objects that have an instance of CachedSMSEntry
269 SMSEntry.debug.message("CachedSMSEntry::updateServiceListeners method called: {}", dn2Str);
276 SMSEntry.debug.error("CachedSMSEntry
[all...]
H A DPluginConfigImpl.java46 class PluginConfigImpl implements CachedSMSEntry.SMSEntryUpdateListener {
57 private CachedSMSEntry smsEntry;
62 private PluginConfigImpl(PluginSchemaImpl ps, CachedSMSEntry entry,
178 // Deregister from CachedSMSEntry
218 CachedSMSEntry entry = checkAndUpdatePermission(cacheName, dn,
253 // CachedSMSEntry is invalid, so create a new PluginConfigImpl
269 static synchronized CachedSMSEntry checkAndUpdatePermission(
272 CachedSMSEntry answer = CachedSMSEntry.getInstance(token, dn);
H A DServiceInstanceImpl.java47 class ServiceInstanceImpl implements CachedSMSEntry.SMSEntryUpdateListener {
55 private CachedSMSEntry smsEntry;
60 private ServiceInstanceImpl(String name, CachedSMSEntry entry) {
173 CachedSMSEntry entry = checkAndUpdatePermission(cName,
210 // CachedSMSEntry is invalid. Recreate this instance
225 static synchronized CachedSMSEntry checkAndUpdatePermission(
235 CachedSMSEntry entry = CachedSMSEntry.getInstance(t, dn);
H A DCachedSubEntries.java61 protected CachedSMSEntry cachedEntry;
71 cachedEntry = CachedSMSEntry.getInstance(t, dn);
104 if (CachedSMSEntry.ttlEnabled && ((currentTimeMillis() -
105 lastUpdated) > CachedSMSEntry.ttl)) {
H A DSMSPropertiesObserver.java78 CachedSMSEntry.initializeProperties();
H A DServiceConfig.java401 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, sdn);
883 CachedSMSEntry entry = CachedSMSEntry.getInstance(token, dn);
890 CachedSMSEntry pEntry = CachedSMSEntry.getInstance(token, pDN);
908 CachedSMSEntry entry = CachedSMSEntry.getInstance(token, dn);
915 CachedSMSEntry pEntry = CachedSMSEntry
[all...]
H A DPluginSchemaImpl.java50 class PluginSchemaImpl extends ServiceSchemaImpl implements CachedSMSEntry.SMSEntryUpdateListener {
68 CachedSMSEntry smsEntry;
82 // Construct the DN and get CachedSMSEntry
89 smsEntry = CachedSMSEntry.getInstance(token, sb.toString()
102 smsEntry = CachedSMSEntry.getInstance(token, sb.toString()
160 CachedSMSEntry getCachedSMSEntry() {
302 // Deregister itself from CachedSMSEntry
H A DOrganizationConfigManagerImpl.java61 private CachedSMSEntry smsEntry;
77 private OrganizationConfigManagerImpl(CachedSMSEntry entry,
419 CachedSMSEntry cEntry =
464 private static CachedSMSEntry checkAndUpdatePermission(String cacheName,
466 CachedSMSEntry answer = CachedSMSEntry.getInstance(t, cacheName);
H A DPluginSchema.java294 CachedSMSEntry smsEntry = psi.getCachedSMSEntry();
336 CachedSMSEntry ce = CachedSMSEntry.getInstance(token, dn);
H A DServiceManager.java684 // Construct the DN and get CachedSMSEntry
691 CachedSMSEntry ce;
694 ce = CachedSMSEntry.getInstance(token, sb.toString()
748 CachedSMSEntry configsmse = CachedSMSEntry.getInstance(token,
760 CachedSMSEntry smse = CachedSMSEntry.getInstance(token, dn);
799 CachedSMSEntry ce = CachedSMSEntry.getInstance(token,
915 CachedSMSEntry
[all...]
H A DServiceConfigImpl.java54 class ServiceConfigImpl implements ServiceListener, CachedSMSEntry.SMSEntryUpdateListener {
87 private CachedSMSEntry smsEntry;
99 ServiceSchemaImpl ss, CachedSMSEntry entry, String orgName,
350 // Deregister from CachedSMSEntry
352 // Invalidate CachedSMSEntry
526 CachedSMSEntry entry = checkAndUpdatePermission(cacheName, dn, token);
640 private static CachedSMSEntry checkAndUpdatePermission(
643 CachedSMSEntry answer = CachedSMSEntry.getInstance(t, dn);
683 // notification mechanism in CachedSMSEntry
[all...]
H A DServiceConfigManager.java351 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, orgDN);
445 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, gdn);
518 CachedSMSEntry cEntry = CachedSMSEntry.getInstance(token, odn);
553 CachedSMSEntry.getInstance(token, sb.toString());

Completed in 54 milliseconds

12