Searched defs:instance (Results 176 - 200 of 355) sorted by relevance

1234567891011>>

/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DConfigurationObserver.java56 private static final ConfigurationObserver instance = new ConfigurationObserver(); field in class:ConfigurationObserver
100 * Returns an instance of <code>ConfigurationObserver</code>.
102 * @return an instance of <code>ConfigurationObserver</code>.
105 instance.registerListeners();
106 return instance;
140 // always use the server instance name with initialising properties
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/validation/
H A DXSDurationValidator.java54 private static XSDurationValidator instance = new XSDurationValidator(); field in class:XSDurationValidator
64 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdRepoAttributeValidatorManager.java53 static IdRepoAttributeValidatorManager instance = null; field in class:IdRepoAttributeValidatorManager
69 * Returns an instance of <code>IdRepoAttributeValidatorManager</code>
70 * @return an instance of <code>IdRepoAttributeValidatorManager</code>
73 if (instance == null) {
75 if (instance == null) {
76 instance = new IdRepoAttributeValidatorManager();
80 return instance;
84 * Returns an instance of <code>IdRepoAttributeValidator</code> for
87 * @return an instance of <code>IdRepoAttributeValidator</code>
/forgerock/openam/openam-core/src/main/java/com/sun/identity/security/
H A DAdminTokenAction.java91 * Singleton instance.
93 private static volatile AdminTokenAction instance; field in class:AdminTokenAction
103 * Returns a cached instance <code>AdminTokenAction</code>.
105 * @return instance of <code>AdminTokenAction</code>.
108 // Safe double-checked locking pattern (instance is volatile):
109 if (instance == null) {
111 if (instance == null) {
113 instance = new AdminTokenAction();
120 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DDirectoryServerVendor.java56 private static DirectoryServerVendor instance = new DirectoryServerVendor(); field in class:DirectoryServerVendor
66 * Returns an instance of this class.
68 * @return an instance of this class.
71 return instance;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCache.java70 private static SessionCache instance; field in class:SessionCache
78 if (instance == null) {
79 instance = new SessionCache(SessionPollerPool.getInstance(), Debug.getInstance(SessionConstants.SESSION_DEBUG));
81 return instance;
/forgerock/openam/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/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/opendj-b2.6/src/server/org/opends/server/core/
H A DAccessControlConfigManager.java83 // The single application-wide instance.
84 private static AccessControlConfigManager instance = null; field in class:AccessControlConfigManager
95 * Creates a new instance of this access control configuration
108 * Get the single application-wide access control manager instance.
114 if (instance == null)
116 instance = new AccessControlConfigManager();
119 return instance;
422 * optionally initializes that instance.
430 * instance should be initialized.
/forgerock/opendj2/src/server/org/opends/server/core/
H A DAccessControlConfigManager.java82 // The single application-wide instance.
83 private static AccessControlConfigManager instance = null; field in class:AccessControlConfigManager
94 * Creates a new instance of this access control configuration
107 * Get the single application-wide access control manager instance.
113 if (instance == null)
115 instance = new AccessControlConfigManager();
118 return instance;
421 * optionally initializes that instance.
429 * instance should be initialized.
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DAccessControlConfigManager.java83 // The single application-wide instance.
84 private static AccessControlConfigManager instance = null; field in class:AccessControlConfigManager
95 * Creates a new instance of this access control configuration
108 * Get the single application-wide access control manager instance.
114 if (instance == null)
116 instance = new AccessControlConfigManager();
119 return instance;
422 * optionally initializes that instance.
430 * instance should be initialized.
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DAccessControlConfigManager.java83 // The single application-wide instance.
84 private static AccessControlConfigManager instance = null; field in class:AccessControlConfigManager
95 * Creates a new instance of this access control configuration
108 * Get the single application-wide access control manager instance.
114 if (instance == null)
116 instance = new AccessControlConfigManager();
119 return instance;
422 * optionally initializes that instance.
430 * instance should be initialized.
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DAccessControlConfigManager.java82 // The single application-wide instance.
83 private static AccessControlConfigManager instance = null; field in class:AccessControlConfigManager
94 * Creates a new instance of this access control configuration
107 * Get the single application-wide access control manager instance.
113 if (instance == null)
115 instance = new AccessControlConfigManager();
118 return instance;
421 * optionally initializes that instance.
429 * instance should be initialized.
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/sso/
H A DSSOTokenManager.java59 * instance of SSOTokenManager in any given JVM. <p> SSOTokenManager currently
74 * It is a singleton class; an instance of this class can be obtained by calling
77 * Having obtained an instance of <code>SSOTokenManager</code>, its methods
113 // Singleton instance of SSOTokenManager
114 private static volatile SSOTokenManager instance = null; field in class:SSOTokenManager
121 * Returns the singleton instance of
124 * @return The singleton <code>SSOTokenManager</code> instance
127 * instance.
137 if (instance == null) {
147 * that the instance ha
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DPrivilegeChangeNotifier.java50 private static PrivilegeChangeNotifier instance = new field in class:PrivilegeChangeNotifier
100 return instance;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/
H A DServicesDefaultValues.java62 private static ServicesDefaultValues instance = new ServicesDefaultValues(); field in class:ServicesDefaultValues
104 Map map = instance.defValues;
222 Map map = instance.defValues;
240 Map map = instance.defValues;
367 Map map = instance.defValues;
382 Map map = instance.defValues;
510 return instance.defValues;
545 Map map = instance.defValues;
H A DUserIdRepo.java91 private static UserIdRepo instance = new UserIdRepo(); field in class:UserIdRepo
106 return instance;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DSMSNotificationManager.java70 private static SMSNotificationManager instance; field in class:SMSNotificationManager
165 if (instance == null) {
166 instance = new SMSNotificationManager();
168 return (instance);
370 instance.sendNotifications(name, type, localOnly);
H A DServiceInstance.java44 * instance variables.
54 private ServiceInstanceImpl instance; field in class:ServiceInstance
59 this.instance = i;
64 * Returns the instance name.
66 * @return the instance name.
69 return (instance.getName());
92 * instance must be obtained.
95 * instance must be obtained.
98 return (instance.getGroup());
102 * Sets the group name for this instance
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DAccessControlConfigManager.java71 /** The single application-wide instance. */
72 private static AccessControlConfigManager instance; field in class:AccessControlConfigManager
83 * Creates a new instance of this access control configuration
96 * Get the single application-wide access control manager instance.
102 if (instance == null)
104 instance = new AccessControlConfigManager();
107 return instance;
402 * optionally initializes that instance.
410 * instance should be initialized.
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DAssertionFactory.java63 * There are three ways to obtain an instance of a object type:
70 private static AssertionFactory instance = new AssertionFactory(); field in class:AssertionFactory
79 * Returns the instance of <code>AssertionFactory</code>.
85 return instance;
89 * Returns a new instance of <code>Advice</code>.
91 * @return a new instance of <code>Advice</code>
104 * Returns a new instance of <code>Advice</code>.
108 * @return a new instance of <code>Advice</code>
125 * Returns a new instance of <code>Advice</code>
129 * @return a new instance o
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSOAPCommunicator.java56 private static SOAPCommunicator instance = new SOAPCommunicator(); // TODO: use Guice field in class:SOAPCommunicator
68 * Gets the singleton instance of the SOAPCommunicator.
70 * @return the SOAPCommunicator instance.
73 return instance;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xmlenc/
H A DXMLEncryptionManager.java44 private static XMLEncryptionManager instance = new XMLEncryptionManager(); field in class:XMLEncryptionManager
82 * Gets the instance of <code>XMLEncryptionManager</code> with default
87 return instance;
91 * Gets the instance of <code>XMLEncryptionManager</code> with given
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/
H A DOAuthResourceManager.java54 private static OAuthResourceManager instance = new OAuthResourceManager(); field in class:OAuthResourceManager
71 * Returns an instance of OAuthResourceManager.
73 * @return an instance of OAuthResourceManager
76 return instance;
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/factories/
H A DScriptContextScope.java31 * Rhino scope that is backed by the given ScriptContext instance. Variables are looked up in the given JSR 223
199 public boolean hasInstance(final Scriptable instance) { argument
200 Scriptable prototype = instance.getPrototype();

Completed in 78 milliseconds

1234567891011>>