Searched defs:instance (Results 201 - 225 of 355) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-sts/openam-publish-sts/src/main/java/org/forgerock/openam/sts/publish/common/
H A DSTSInstanceConfigStoreBase.java62 * Persists the STS instance into the SMS.
63 * @param stsInstanceId the identifier for the to-be-published sts instance
64 * @param realm The realm in which the sts instance should be deployed
65 * @param instance The to-be-persisted state.
69 public void persistSTSInstance(String stsInstanceId, String realm, T instance) throws STSPublishException { argument
71 Note on having to explicitly specify the realm as a parameter, when it could, theoretically, be obtained from the T instance parameter:
79 whether it is dealing with a soap or rest sts instance.
88 Map<String, Set<String>> instanceConfigAttributes = instanceConfigMarshaller.toMap(instance);
100 logger.debug("Persisted " + restOrSoap() + " sts instance with id " + stsInstanceId + " in realm " + realm);
105 "Exception caught persisting " + restOrSoap() + " instance "
154 updateSTSInstance(String stsInstanceId, String realm, T instance) argument
[all...]
/forgerock/openam-v13/openam-sts/openam-publish-sts/src/main/java/org/forgerock/openam/sts/publish/rest/
H A DRestSTSInstancePublisherImpl.java59 * related to publishing and removing a rest-sts instance. In other words, I could use a ConcurrentHashMap for the
63 * mutations of all stateful elements involved with publishing a rest-sts instance.
93 * Publishes the rest STS instance at the specified relative path. This method will be invoked when the Rest STS instance
95 * Note on transaction semantics: publishing a rest-sts instance means modifying both the CREST router, and the SMS.
99 * the RestSTS instance. This RestSTSInstanceConfig will be persisted so that persisted instances
101 * @param restSTSInstance The RestSTS instance defining the functionality of the rest STS service.
103 * @throws STSPublishException thrown in case a rest-sts instance has already been published at the specified
110 Exclude the possibility that a rest-sts instance has already been added at the sub-path.
119 But because it should not be possible to add a new rest-sts instance a
223 updateInstanceInSMS(String stsId, String realm, RestSTSInstanceConfig instanceConfig, RestSTS instance) argument
240 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 DAuthenticator.java65 private static Authenticator instance = new Authenticator(); field in class:Authenticator
75 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/authentication/model/
H A DAuthPropertiesModelImpl.java59 * Creates a model instance for configuring the core auth properties.
105 * To get the service name from the instance name:
107 * 2) from the AuthInstance object get the type of instance
108 * 3) Use the instance type to get the schema for that type
111 public String getServiceName(String instance) { argument
118 mgr.getAuthenticationInstance(instance);
128 " the requested instance " + instance +
135 "problem getting service name for " + instance, ace);
221 String instance
329 setInstanceValues(String instance, Map values) argument
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMDisplayType.java38 private static AMDisplayType instance = new AMDisplayType(); field in class:AMDisplayType
64 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/delegation/model/
H A DDelegationConfig.java63 private static DelegationConfig instance = new DelegationConfig(); field in class:DelegationConfig
178 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/federation/
H A DSAMLPropertyXMLBuilder.java45 private static SAMLPropertyXMLBuilder instance = field in class:SAMLPropertyXMLBuilder
180 * @return samlv1.x instance
183 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/
H A DIPConditionHelper.java57 private static IPConditionHelper instance = new IPConditionHelper(); field in class:IPConditionHelper
63 return instance;
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/unittest/
H A DUtil.java83 private static Util instance = new Util(); field in class:Util
107 InputStream in = instance.getClass().getClassLoader()
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSOAPService.java64 private static FSSOAPService instance = null; field in class:FSSOAPService
629 * Returns an instance of <code>FSSOAPService</code> instance.
631 * @return an instance of <code>FSSOAPService</code> instance.
636 if (instance == null){
638 "Constructing a new instance of FSSOAPService");
639 instance = new FSSOAPService();
641 return instance;
H A DFSServiceManager.java76 private static FSServiceManager instance = null; field in class:FSServiceManager
417 "Manager instance");
662 * Returns <code>FSNameRegistrationHandler</code> instance. This method is
737 * Returns <code>FSServiceManager</code> instance.
738 * @return <code>FSServiceManager</code> instance
742 if (instance == null) {
746 " Creating a new instance of ServiceManager");
748 instance = new FSServiceManager();
751 return instance;
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/crypto/
H A DConfigCrypto.java71 static ConfigCrypto instance; field in class:ConfigCrypto
96 if (instance == null) {
97 instance = new ConfigCrypto(context, providerListener);
99 return instance;
107 * @param factoryAlias the alias of the factory configuration instance
139 * @param instanceAlias null for plain managed service, or the subname (alias) for the managed factory configuration instance
/forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/
H A DArchive.java44 private static Archive instance = null; field in class:Archive
196 * Get an instance of the patch archive bundle.
198 * @return An instance of the {@link Archive}.
201 if (instance == null) {
202 instance = new Archive();
204 return instance;
/forgerock/openam/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();
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DAuthenticator.java67 private static Authenticator instance = new Authenticator(); field in class:Authenticator
77 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/authentication/model/
H A DAuthPropertiesModelImpl.java59 * Creates a model instance for configuring the core auth properties.
105 * To get the service name from the instance name:
107 * 2) from the AuthInstance object get the type of instance
108 * 3) Use the instance type to get the schema for that type
111 public String getServiceName(String instance) { argument
118 mgr.getAuthenticationInstance(instance);
128 " the requested instance " + instance +
135 "problem getting service name for " + instance, ace);
221 String instance
329 setInstanceValues(String instance, Map values) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMDisplayType.java38 private static AMDisplayType instance = new AMDisplayType(); field in class:AMDisplayType
64 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/delegation/model/
H A DDelegationConfig.java63 private static DelegationConfig instance = new DelegationConfig(); field in class:DelegationConfig
178 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/federation/
H A DSAMLPropertyXMLBuilder.java45 private static SAMLPropertyXMLBuilder instance = field in class:SAMLPropertyXMLBuilder
180 * @return samlv1.x instance
183 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/
H A DIPConditionHelper.java57 private static IPConditionHelper instance = new IPConditionHelper(); field in class:IPConditionHelper
63 return instance;
/forgerock/openam/openam-core/src/main/java/com/iplanet/sso/
H A DSSOTokenManager.java60 * instance of SSOTokenManager in any given JVM. <p> SSOTokenManager currently
75 * It is a singleton class; an instance of this class can be obtained by calling
78 * Having obtained an instance of <code>SSOTokenManager</code>, its methods
116 // Singleton instance of SSOTokenManager
117 private static volatile SSOTokenManager instance = null; field in class:SSOTokenManager
123 * Returns the singleton instance of
126 * @return The singleton <code>SSOTokenManager</code> instance
129 * instance.
139 if (instance == null) {
149 * that the instance ha
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DPrivilegeChangeNotifier.java56 private static PrivilegeChangeNotifier instance = new field in class:PrivilegeChangeNotifier
105 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DServicesDefaultValues.java64 private static ServicesDefaultValues instance = new ServicesDefaultValues(); field in class:ServicesDefaultValues
106 Map<String, Object> map = instance.defValues;
221 Map map = instance.defValues;
239 Map map = instance.defValues;
318 Map map = instance.defValues;
333 Map map = instance.defValues;
461 return instance.defValues;
496 Map map = instance.defValues;
H A DUserIdRepo.java95 private static UserIdRepo instance = new UserIdRepo(); field in class:UserIdRepo
110 return instance;
/forgerock/openam/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);

Completed in 201 milliseconds

1234567891011>>