Searched defs:instance (Results 151 - 175 of 355) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCache.java57 private static SessionCache instance; field in class:SessionCache
65 if (instance == null) {
66 instance = new SessionCache(SessionPollerPool.getInstance(), Debug.getInstance(SessionConstants.SESSION_DEBUG));
68 return instance;
163 * This method should only be called when the identified session has another instance
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DDebugLogger.java71 /** The singleton instance of this class. */
72 static final DebugLogger instance = new DebugLogger(); field in class:DebugLogger
124 * Retrieve the singleton instance of this class.
126 * @return The singleton instance of this logger.
130 return instance;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DContextFactory.java59 * There are three ways to obtain an instance of a object type:
66 private static ContextFactory instance = new ContextFactory(); field in class:ContextFactory
75 * Returns the instance of <code>ContextSchemaFactory</code>.
81 return instance;
85 * Returns a new instance of <code>Request</code>.
87 * @return a new instance of <code>Request</code>
100 * Returns a new instance of <code>Request</code>.
104 * @return a new instance of <code>Request</code>
121 * Returns a new instance of <code>Request</code>
125 * @return a new instance o
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DShutdownManager.java42 * ShutdownManager is a static instance which is used to trigger all the
48 private volatile static ShutdownManager instance; field in class:ShutdownManager
107 * Returns the static instance of ShutdownManager in the VM.
109 * @return The static instance of ShutdownManager
112 if (instance == null) {
113 instance = new ShutdownManager();
115 return instance;
221 instance = null;
/forgerock/openam-v13/openam-sts/openam-publish-sts/src/main/java/org/forgerock/openam/sts/publish/rest/
H A DRestSTSInstancePublisher.java26 * Defines the interface consumed to publish a Rest STS instance, and to remove this instance once its functionality
37 * Publish the Rest STS instance specified by the instanceConfig parameter. Publishing a Rest STS instance
39 * @param instanceConfig The configuration state for the to-be-published Rest STS instance.
40 * @param instance The RestSTS instance to be exposed
43 * @return the urlElement, including the realm, at which the Rest STS instance has been published.
46 String publishInstance(RestSTSInstanceConfig instanceConfig, RestSTS instance, boolean republish) throws STSPublishException; argument
49 * Remove the Rest STS instance fro
90 updateInstanceInSMS(String stsId, String realm, RestSTSInstanceConfig instanceConfig, RestSTS instance) argument
121 updateInstanceInCrestRouter(String stsId, String realm, RestSTSInstanceConfig instanceConfig, RestSTS instance) argument
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DUsageFormatter.java51 private static UsageFormatter instance = new UsageFormatter(); field in class:UsageFormatter
67 * Returns an instance of this class.
69 * @return an instance of this class.
72 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/agentconfig/
H A DAgentTabManager.java53 private static AgentTabManager instance = new AgentTabManager(); field in class:AgentTabManager
63 * Returns an instance of agent tab manager.
65 * @return an instance of agent tab manager.
68 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DPageTrailManager.java55 private static PageTrailManager instance = new PageTrailManager(); field in class:PageTrailManager
69 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMAdminLog.java54 private static AMAdminLog instance = new AMAdminLog(); field in class:AMAdminLog
97 * Returns an instance of the logger.
99 * @return an instance of the logger.
102 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/
H A DAuthToRealmHelper.java49 private static AuthToRealmHelper instance = new AuthToRealmHelper(); field in class:AuthToRealmHelper
55 return instance;
H A DSessionPropertyConditionHelper.java52 private static SessionPropertyConditionHelper instance = field in class:SessionPropertyConditionHelper
60 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/model/
H A DPolicyCache.java55 private static PolicyCache instance = new PolicyCache(); field in class:PolicyCache
69 * Gets an instance of policy cache
71 * @return an instance of policy cache
74 return instance;
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/api/
H A DTestTaskListener.java48 private static final TestTaskListener instance = new TestTaskListener(); field in class:TestTaskListener
65 DirectoryServer.registerBackupTaskListener(instance);
66 DirectoryServer.registerRestoreTaskListener(instance);
67 DirectoryServer.registerExportTaskListener(instance);
68 DirectoryServer.registerImportTaskListener(instance);
78 DirectoryServer.deregisterBackupTaskListener(instance);
79 DirectoryServer.deregisterRestoreTaskListener(instance);
80 DirectoryServer.deregisterExportTaskListener(instance);
81 DirectoryServer.deregisterImportTaskListener(instance);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DTestPasswordValidator.java50 * The singleton instance of this test password validator.
52 private static TestPasswordValidator instance; field in class:TestPasswordValidator
81 * Creates a new instance of this password validator.
96 instance = this;
131 * Retrieves an instance of this test password validator.
133 * @return An instance of this test password validator, or <CODE>null</CODE>
134 * if no instance has been created.
138 return instance;
144 * Clears the instance after the tests so that it's memory can be reclaimed.
150 instance
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/plugins/
H A DUpdatePreOpPlugin.java59 * The singleton instance of this test password validator.
61 private static UpdatePreOpPlugin instance; field in class:UpdatePreOpPlugin
86 * Creates a new instance of this Directory Server plugin. Every
121 instance = this;
190 instance.setAttributes.clear();
191 instance.removeAttributes.clear();
192 instance.addObjectClasses.clear();
193 instance.removeObjectClasses.clear();
194 instance.modifications.clear();
207 instance
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DShutdownManager.java42 * ShutdownManager is a static instance which is used to trigger all the
48 private volatile static ShutdownManager instance; field in class:ShutdownManager
107 * Returns the static instance of ShutdownManager in the VM.
109 * @return The static instance of ShutdownManager
112 if (instance == null) {
113 instance = new ShutdownManager();
115 return instance;
221 instance = null;
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DUsageFormatter.java51 private static UsageFormatter instance = new UsageFormatter(); field in class:UsageFormatter
67 * Returns an instance of this class.
69 * @return an instance of this class.
72 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/agentconfig/
H A DAgentTabManager.java53 private static AgentTabManager instance = new AgentTabManager(); field in class:AgentTabManager
63 * Returns an instance of agent tab manager.
65 * @return an instance of agent tab manager.
68 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DPageTrailManager.java55 private static PageTrailManager instance = new PageTrailManager(); field in class:PageTrailManager
69 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMAdminLog.java54 private static AMAdminLog instance = new AMAdminLog(); field in class:AMAdminLog
97 * Returns an instance of the logger.
99 * @return an instance of the logger.
102 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/
H A DAuthToRealmHelper.java49 private static AuthToRealmHelper instance = new AuthToRealmHelper(); field in class:AuthToRealmHelper
55 return instance;
H A DSessionPropertyConditionHelper.java52 private static SessionPropertyConditionHelper instance = field in class:SessionPropertyConditionHelper
60 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/model/
H A DPolicyCache.java55 private static PolicyCache instance = new PolicyCache(); field in class:PolicyCache
69 * Gets an instance of policy cache
71 * @return an instance of policy cache
74 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DDiscoveryDataCache.java53 private static DiscoveryDataCache instance = new DiscoveryDataCache(); field in class:DiscoveryDataCache
67 * Gets an instance of discover data cache
69 * @return an instance of discover data cache
72 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DBackwardCompSupport.java47 private static BackwardCompSupport instance; field in class:BackwardCompSupport
89 if (instance == null) {
90 instance = new BackwardCompSupport();
92 return instance;

Completed in 219 milliseconds

1234567891011>>