Searched defs:instance (Results 101 - 125 of 355) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDurationValidator.java51 private static XSDurationValidator instance = new XSDurationValidator(); field in class:XSDurationValidator
58 * Returns an instance of this validator.
60 * @return an instance of this validator.
63 return instance;
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/publish/
H A DSTSInstanceConfigStore.java25 * Interface defining the act of persisting, removing, or reading state corresponding to a published STS instance so that
26 * this instance may be reconstituted following a server restart, and so that the single token-generation-service can
27 * issue tokens with STS-instance-specific state (e.g. SAML2 configurations and crypto context).
36 * STS instance
37 * @param stsId The unique identifier for the STS instance. Currently obtained by calling RestSTSInstanceConfig#getDeploymentSubPath.
38 * @param realm The realm in which the sts instance should be deployed
39 * @param instance The to-be-persisted state.
41 void persistSTSInstance(String stsId, String realm, T instance) throws STSPublishException; argument
47 * @param realm the realm in which the sts instance was deployed. Necessary for SMS lookup.
52 * This method is called by the token generation service to obtain the STS-instance specifi
72 updateSTSInstance(String stsInstanceId, String realm, T instance) argument
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMConsoleConfig.java41 static private AMConsoleConfig instance = new AMConsoleConfig(); field in class:AMConsoleConfig
74 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/
H A DActionSchemaGUI.java47 private static ActionSchemaGUI instance = new ActionSchemaGUI(); field in class:ActionSchemaGUI
53 return instance;
H A DAuthLevelHelper.java63 private static AuthLevelHelper instance = new AuthLevelHelper(); field in class:AuthLevelHelper
69 * Returns an instance of authentication level helper object.
71 * @return an instance of authentication level helper object.
74 return instance;
H A DAuthToServiceHelper.java72 private static AuthToServiceHelper instance = new AuthToServiceHelper(); field in class:AuthToServiceHelper
78 * Returns an instance of this singleton.
80 * @return an instance of this singleton.
83 return instance;
H A DIdentityMembershipHelper.java54 private static IdentityMembershipHelper instance = field in class:IdentityMembershipHelper
61 * Returns an instance of <code>IdentityMembershipHelper</code>.
63 * @return an instance of <code>IdentityMembershipHelper</code>.
66 return instance;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSSignatureManager.java40 // Singleton instance of FSSignatureManager
41 private static FSSignatureManager instance = null; field in class:FSSignatureManager
62 * Returns the singleton instance of <code>FSSignatureManager</code> with
64 * @return a <code>FSSignatureManager</code> instance
67 if (instance == null) {
69 if (instance == null) {
71 FSUtils.debug.message("Constructing a new instance"
74 instance = new FSSignatureManager();
78 return (instance);
82 * Returns an instance o
[all...]
/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/utils/
H A DCloseableURLClassLoader.java102 private Object getFieldObject(Class c, String field, Object instance) { argument
108 obj = f.get(instance);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDurationValidator.java51 private static XSDurationValidator instance = new XSDurationValidator(); field in class:XSDurationValidator
58 * Returns an instance of this validator.
60 * @return an instance of this validator.
63 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMConsoleConfig.java41 static private AMConsoleConfig instance = new AMConsoleConfig(); field in class:AMConsoleConfig
74 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/
H A DActionSchemaGUI.java47 private static ActionSchemaGUI instance = new ActionSchemaGUI(); field in class:ActionSchemaGUI
53 return instance;
H A DAuthLevelHelper.java63 private static AuthLevelHelper instance = new AuthLevelHelper(); field in class:AuthLevelHelper
69 * Returns an instance of authentication level helper object.
71 * @return an instance of authentication level helper object.
74 return instance;
H A DAuthToServiceHelper.java72 private static AuthToServiceHelper instance = new AuthToServiceHelper(); field in class:AuthToServiceHelper
78 * Returns an instance of this singleton.
80 * @return an instance of this singleton.
83 return instance;
H A DIdentityMembershipHelper.java54 private static IdentityMembershipHelper instance = field in class:IdentityMembershipHelper
61 * Returns an instance of <code>IdentityMembershipHelper</code>.
63 * @return an instance of <code>IdentityMembershipHelper</code>.
66 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DPolicyDataStore.java40 private static PolicyDataStore instance; field in class:PolicyDataStore
48 instance = (PolicyDataStore)clazz.newInstance();
59 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DBootstrapCreator.java64 private static BootstrapCreator instance = new BootstrapCreator(); field in class:BootstrapCreator
83 return instance;
91 instance.update(dsCfg);
148 * the current running/boostrapped instance.
210 // decode so we can open keystore at boot before instance key is available
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCookies.java72 private static SessionCookies instance; field in class:SessionCookies
77 * @return A singleton SessionCookies instance.
79 * properties are set. Use Guice to get the instance instead.
83 if (instance == null) {
84 instance = new SessionCookies(SessionCache.getInstance());
86 return instance;
H A DSessionPollerPool.java55 private static SessionPollerPool instance; field in class:SessionPollerPool
59 * @return A singleton SessionPollerPool instance.
62 if (instance == null) {
63 instance = new SessionPollerPool();
65 return instance;
H A DSessionURL.java50 private static SessionURL instance; field in class:SessionURL
55 * @return A singleton SessionURL instance.
57 * properties are set. Use Guice to get the instance instead.
61 if (instance == null) {
62 instance = new SessionURL(SessionCookies.getInstance());
64 return instance;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/util/
H A DFSSignatureManager.java40 // Singleton instance of FSSignatureManager
41 private static FSSignatureManager instance = null; field in class:FSSignatureManager
62 * Returns the singleton instance of <code>FSSignatureManager</code> with
64 * @return a <code>FSSignatureManager</code> instance
67 if (instance == null) {
69 if (instance == null) {
71 FSUtils.debug.message("Constructing a new instance"
74 instance = new FSSignatureManager();
78 return (instance);
82 * Returns an instance o
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/datastore/
H A DDataStoreProviderManager.java64 private static DataStoreProviderManager instance = field in class:DataStoreProviderManager
83 * Gets the singleton instance of <code>DataStoreProviderManager</code>.
84 * @return The singleton <code>DataStoreProviderManager</code> instance
86 * <code>DataStoreProviderManager</code> instance.
91 return instance;
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/publish/
H A DSTSInstanceConfigStore.java25 * Interface defining the act of persisting, removing, or reading state corresponding to a published STS instance so that
26 * this instance may be reconstituted following a server restart, and so that the single token-generation-service can
27 * issue tokens with STS-instance-specific state (e.g. SAML2 configurations and crypto context).
36 * STS instance
37 * @param stsId The unique identifier for the STS instance. Currently obtained by calling RestSTSInstanceConfig#getDeploymentSubPath.
38 * @param realm The realm in which the sts instance should be deployed
39 * @param instance The to-be-persisted state.
41 void persistSTSInstance(String stsId, String realm, T instance) throws STSPublishException; argument
47 * @param realm the realm in which the sts instance was deployed. Necessary for SMS lookup.
52 * This method is called by the token generation service to obtain the STS-instance specifi
72 updateSTSInstance(String stsInstanceId, String realm, T instance) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/debug/
H A DDebugLogger.java83 /** The singleton instance of this class for configuration purposes. */
84 static final DebugLogger instance = new DebugLogger(); field in class:DebugLogger
182 * Retrieve the singleton instance of this class.
184 * @return The singleton instance of this logger.
188 return instance;
/forgerock/opendj2/src/server/org/opends/server/loggers/debug/
H A DDebugLogger.java82 /** The singleton instance of this class for configuration purposes. */
83 static final DebugLogger instance = new DebugLogger(); field in class:DebugLogger
181 * Retrieve the singleton instance of this class.
183 * @return The singleton instance of this logger.
187 return instance;

Completed in 101 milliseconds

1234567891011>>