Searched defs:instance (Results 26 - 50 of 355) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/src/server/org/opends/server/loggers/
H A DErrorLogger.java54 /** The singleton instance of this class for configuration purposes. */
55 private static final ErrorLogger instance = new ErrorLogger(); field in class:ErrorLogger
58 * Retrieve the singleton instance of this class.
60 * @return The singleton instance of this logger.
64 return instance;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DNullOutputStream.java49 * The singleton instance for this class.
51 private static final NullOutputStream instance = field in class:NullOutputStream
60 new PrintStream(instance);
65 * Retrieves an instance of this null output stream.
67 * @return An instance of this null output stream.
69 public static NullOutputStream instance() method in class:NullOutputStream
71 return instance;
89 * Creates a new instance of this null output stream.
/forgerock/opendj2-hg/src/server/org/opends/server/loggers/
H A DErrorLogger.java53 /** The singleton instance of this class for configuration purposes. */
54 private static final ErrorLogger instance = new ErrorLogger(); field in class:ErrorLogger
57 * Retrieve the singleton instance of this class.
59 * @return The singleton instance of this logger.
63 return instance;
/forgerock/opendj2-hg/src/server/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/openam-v13/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-v13/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-v13/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-v13/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);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLoggingThread.java43 private static LoggingThread instance = null; field in class:LoggingThread
56 instance = null;
64 if (instance == null) {
65 instance = new LoggingThread();
67 return instance;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/messageid/
H A DMessageProviderFactory.java70 private static MessageProviderFactory instance = new field in class:MessageProviderFactory
82 * Returns an instance of provider.
85 * @return an instance of provider.
90 return instance.getMessageProvider(name, null);
94 * Returns an instance of provider.
98 * @return an instance of provider.
105 return instance.getMessageProvider(name, packageName);
109 * Returns an instance of provider.
113 * @return an instance of provider.
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/
H A DBootstrapCreator.java58 private static BootstrapCreator instance = new BootstrapCreator(); field in class:BootstrapCreator
74 return instance;
82 instance.update(dsCfg);
95 instance.update(DSConfigMgr.getDSConfigMgr());
141 * @param dsCfg instance of the <code>IDSConfigMgr</code> containing
H A DInstallLog.java45 private static InstallLog instance = new InstallLog(); field in class:InstallLog
50 return instance;
H A DSystemStartupInjectorHolder.java26 * <p>A thread-safe singleton holding the system startup Guice Injector instance that system
39 private static SystemStartupInjectorHolder instance; field in class:SystemStartupInjectorHolder
49 * instance.</p>
58 if (instance == null) {
59 instance = new SystemStartupInjectorHolder(injector);
71 if (instance == null) {
74 return instance;
78 * <p>Uses the Guice injector to return the appropriate instance for the given injection
83 * @param type The class to get an instance of.
85 * @return A non-null instance o
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DCTSDataLayer.java41 private static CTSDataLayer instance = new CTSDataLayer(); field in class:CTSDataLayer
59 return instance;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionServiceURLService.java37 private static SessionServiceURLService instance; field in class:SessionServiceURLService
39 if (instance == null) {
40 instance = new SessionServiceURLService();
42 return instance;
H A DSessionURL.java37 private static SessionURL instance; field in class:SessionURL
42 * @return A singleton SessionURL instance.
44 * properties are set. Use Guice to get the instance instead.
48 if (instance == null) {
49 instance = new SessionURL(SessionCookies.getInstance());
51 return instance;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/model/
H A DDBStatistics.java35 private static DBStatistics instance = null; field in class:DBStatistics
52 if (instance == null) {
53 instance = new DBStatistics();
56 return instance;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/
H A DServerGroupConfiguration.java32 private ServerInstance instance; field in class:ServerGroupConfiguration
35 * New instance of the ServerGroupConfiguration.
37 * @param instance Non null.
39 ServerGroupConfiguration(ServerGroup group, ServerInstance instance) { argument
41 this.instance = instance;
48 return instance.getAuthID();
55 return instance.getPasswd().toCharArray();
62 return instance.getMaxConnections();
69 return instance
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/
H A DPolicyFactory.java43 * There are three ways to obtain an instance of a object type:
50 private static PolicyFactory instance = new PolicyFactory(); field in class:PolicyFactory
59 * Returns the instance of <code>ContextSchemaFactory</code>.
65 return instance;
69 * Returns a new instance of <code>Obligation</code>.
71 * @return a new instance of <code>Obligation</code>
84 * Returns a new instance of <code>Obligation</code>.
88 * @return a new instance of <code>Obligation</code>
105 * Returns a new instance of <code>Obligation</code>
109 * @return a new instance o
[all...]
/forgerock/openam-v13/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-v13/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;

Completed in 106 milliseconds

1234567891011>>