Searched defs:instance (Results 51 - 75 of 355) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DInstanceConfigMarshaller.java32 * Called to marshal an STSInstanceConfig subclass instance to the Map<String, Set<String>> required for SMS persistence.
33 * @param instance the to-be-marshaled instance
37 Map<String, Set<String>> toMap(T instance) throws STSPublishException; argument
40 * Marshal STSInstanceConfig subclass instance from the SMS representation
48 * Marshal STSInstanceConfig subclass instance from the SMS representation, wrapped in json. The ViewBean classes
50 * to publish the Rest or Soap STS instance. The invocation payload is the SMS Map<String, Set<String>> representation
62 * @return a STSInstanceConfig subclass instance
H A DRestSTSInstanceConfigMarshaller.java37 public Map<String, Set<String>> toMap(RestSTSInstanceConfig instance) throws STSPublishException { argument
39 return instance.marshalToAttributeMap();
H A DSoapSTSInstanceConfigMarshaller.java36 public Map<String, Set<String>> toMap(SoapSTSInstanceConfig instance) throws STSPublishException { argument
38 return instance.marshalToAttributeMap();
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMDelimitAttrTokenizer.java40 private static AMDelimitAttrTokenizer instance = field in class:AMDelimitAttrTokenizer
47 return instance;
H A DAMPipeDelimitAttrTokenizer.java40 private static AMPipeDelimitAttrTokenizer instance = field in class:AMPipeDelimitAttrTokenizer
47 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMResourceBundleCache.java49 private static AMResourceBundleCache instance = new AMResourceBundleCache(); field in class:AMResourceBundleCache
58 * Gets instance of <code>AMResourceBundleCache</code>
60 * @return instance of <code>AMResourceBundleCache</code>
63 return instance;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DPrivilegeXMLBuilder.java48 private static PrivilegeXMLBuilder instance = new PrivilegeXMLBuilder(); field in class:PrivilegeXMLBuilder
56 return instance;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DNullOutputStream.java45 * The singleton instance for this class.
47 private static final NullOutputStream instance = field in class:NullOutputStream
56 new PrintStream(instance);
61 * Retrieves an instance of this null output stream.
63 * @return An instance of this null output stream.
65 public static NullOutputStream instance() method in class:NullOutputStream
67 return instance;
103 * Creates a new instance of this null output stream.
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DScripts.java34 private static Scripts instance = null; field in class:Scripts
55 instance = new Scripts(registry);
67 return new Script(instance.registry.takeScript(config));
/forgerock/openidm-v4/openidm-infoservice/src/main/java/org/forgerock/openidm/info/impl/
H A DFrameworkStatus.java27 * A framework status instance holder
30 private static final FrameworkStatus instance = new FrameworkStatus(-1); field in class:FrameworkStatus.InstanceHolder
49 * Gets an instance of the framework status.
51 * @return a FrameworkStatus instance
54 return InstanceHolder.instance;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DSystemTimerPool.java41 /** The name of the {@link TimerPool} instance. */
45 protected static TimerPool instance; field in class:SystemTimerPool
71 if (instance == null) {
76 instance = new TimerPool(TIMER_NAME, poolSize, false, Debug.getInstance(TIMER_NAME));
81 instance.shutdown();
82 instance = null;
86 instance.shutdown();
87 instance = null;
91 return instance;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DAMResourceBundleCache.java42 private static AMResourceBundleCache instance; field in class:AMResourceBundleCache
53 * Returns instance of <code>AMResourceBundleCache</code>.
55 * @return instance of <code>AMResourceBundleCache</code>.
58 if (instance == null) {
59 instance = new AMResourceBundleCache();
61 return instance;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DIntegerValidator.java37 private static IntegerValidator instance = field in class:IntegerValidator
47 return instance;
H A DURLValidator.java41 private static URLValidator instance = new URLValidator(); field in class:URLValidator
49 * Returns an instance of this validator.
51 * @return an instance of this validator.
54 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMDelimitAttrTokenizer.java40 private static AMDelimitAttrTokenizer instance = field in class:AMDelimitAttrTokenizer
47 return instance;
H A DAMPipeDelimitAttrTokenizer.java40 private static AMPipeDelimitAttrTokenizer instance = field in class:AMPipeDelimitAttrTokenizer
47 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMResourceBundleCache.java49 private static AMResourceBundleCache instance = new AMResourceBundleCache(); field in class:AMResourceBundleCache
58 * Gets instance of <code>AMResourceBundleCache</code>
60 * @return instance of <code>AMResourceBundleCache</code>
63 return instance;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DPrivilegeXMLBuilder.java48 private static PrivilegeXMLBuilder instance = new PrivilegeXMLBuilder(); field in class:PrivilegeXMLBuilder
56 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DServerConfigXMLObserver.java45 private static ServerConfigXMLObserver instance; field in class:ServerConfigXMLObserver
50 instance = new ServerConfigXMLObserver();
51 ConfigurationObserver.getInstance().addListener(instance);
68 * Returns an instance of <code>ServerConfigXMLObserver</code> object.
70 * @return an instance of <code>ServerConfigXMLObserver</code> object.
73 return instance;
87 * tracking XML string in this instance is the same as
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/validation/
H A DIntegerValidator.java46 private static IntegerValidator instance = field in class:IntegerValidator
56 return instance;
H A DPositiveIntegerValidator.java45 private static PositiveIntegerValidator instance = field in class:PositiveIntegerValidator
55 return instance;
H A DURLValidator.java47 private static URLValidator instance = new URLValidator(); field in class:URLValidator
56 return instance;
H A DXSDateTimeValidator.java47 private static XSDateTimeValidator instance = new XSDateTimeValidator(); field in class:XSDateTimeValidator
56 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DListenerManager.java45 private static final ListenerManager instance = new ListenerManager(); field in class:ListenerManager
68 return instance;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/log/
H A DLoggerFactory.java48 private static LoggerFactory instance = new LoggerFactory(); field in class:LoggerFactory
97 return instance.getLoggEr(name);

Completed in 86 milliseconds

1234567891011>>