Searched refs:settings (Results 1 - 25 of 116) sorted by relevance

12345

/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/loggers/
H A DTraceSettingsTest.java39 TraceSettings settings = TraceSettings.parseTraceSettings("stack=2,noargs,cause,noretval");
41 assertEquals(settings.getStackDepth(), 2);
42 assertEquals(settings.isNoArgs(), true);
43 assertEquals(settings.isIncludeCause(), true);
44 assertEquals(settings.isNoRetVal(), true);
45 assertEquals(settings.getLevel(), TraceSettings.Level.DISABLED);
51 TraceSettings settings = TraceSettings.parseTraceSettings("enabled,stack,noargs,cause,noretval");
53 assertEquals(settings.getStackDepth(), DebugStackTraceFormatter.COMPLETE_STACK);
54 assertEquals(settings.isNoArgs(), true);
55 assertEquals(settings
[all...]
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/services/baseurl/
H A DFixedBaseURLProviderTest.java40 OpenAMSettings settings = mock(OpenAMSettings.class);
43 provider.init(settings, "realm");
46 verify(settings).getStringSetting("realm", "base-url-fixed-value");
52 OpenAMSettings settings = mock(OpenAMSettings.class);
53 when(settings.getStringSetting("realm", "base-url-fixed-value")).thenReturn("fred");
54 provider.init(settings, "realm");
67 OpenAMSettings settings = mock(OpenAMSettings.class);
68 when(settings.getStringSetting("realm", "base-url-fixed-value")).thenReturn("fred");
69 provider.init(settings, "realm");
H A DExtensionBaseURLProviderTest.java41 OpenAMSettings settings = mock(OpenAMSettings.class);
42 when(settings.getStringSetting("realm", "base-url-extension-class")).thenReturn(Extension.class.getName());
45 provider.init(settings, "realm");
66 void init(OpenAMSettings settings, String realm) { argument
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/services/baseurl/
H A DFixedBaseURLProviderTest.java40 OpenAMSettings settings = mock(OpenAMSettings.class);
43 provider.init(settings, "realm");
46 verify(settings).getStringSetting("realm", "base-url-fixed-value");
52 OpenAMSettings settings = mock(OpenAMSettings.class);
53 when(settings.getStringSetting("realm", "base-url-fixed-value")).thenReturn("fred");
54 provider.init(settings, "realm");
67 OpenAMSettings settings = mock(OpenAMSettings.class);
68 when(settings.getStringSetting("realm", "base-url-fixed-value")).thenReturn("fred");
69 provider.init(settings, "realm");
H A DExtensionBaseURLProviderTest.java41 OpenAMSettings settings = mock(OpenAMSettings.class);
42 when(settings.getStringSetting("realm", "base-url-extension-class")).thenReturn(Extension.class.getName());
45 provider.init(settings, "realm");
66 void init(OpenAMSettings settings, String realm) { argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DDebugLogPublisher.java52 /** The default global settings key. */
55 /** The map of class names to their trace settings. */
58 /** The map of class names to their method trace settings. */
72 //Set the global settings so that nothing is logged.
117 * Get the trace settings for a specified class.
122 * @return The current trace settings for the class.
126 TraceSettings settings = null;
133 settings = classTraceSettings.get(searchName);
134 while (settings == null && searchName != null)
144 settings
174 addTraceSettings(String scope, TraceSettings settings) argument
285 setClassSettings(String className, TraceSettings settings) argument
303 setMethodSettings(String className, String methodName, TraceSettings settings) argument
329 trace(TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
344 traceException(TraceSettings settings, String signature, String sourceLocation, String msg, Throwable ex, StackTraceElement[] stackTrace) argument
[all...]
H A DDebugTracer.java57 /** A class that represents a settings cache entry. */
85 * Construct a new DebugTracer object with cached settings obtained from
89 * @param publishers The array of publishers to obtain the settings from.
122 for (PublisherSettings settings : publisherSettings)
124 TraceSettings activeSettings = settings.classSettings;
125 Map<String, TraceSettings> methodSettings = settings.methodSettings;
140 // Specific method settings still could exist. Try getting
141 // the settings for this method.
174 settings.debugPublisher.traceException(activeSettings, signature,
179 settings
278 shouldLog(TraceSettings settings, boolean hasException) argument
286 shouldLog(TraceSettings settings) argument
[all...]
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DResourceOwner.java44 * @param settings The settings for the current realm.
47 String getName(OAuth2ProviderSettings settings) throws ServerException; argument
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/config/
H A DThemeConfiguration.js28 settings: {
69 settings: {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/config/
H A DThemeConfiguration.js28 settings: {
69 settings: {
/forgerock/opendj2/src/server/org/opends/server/api/
H A DDebugLogPublisher.java60 //The default global settings key.
63 //The map of class names to their trace settings.
66 //The map of class names to their method trace settings.
80 //Set the global settings so that nothing is logged.
125 * Get the trace settings for a specified class.
130 * @return The current trace settings for the class.
134 TraceSettings settings = TraceSettings.DISABLED;
156 // Use global settings, if nothing more specific was found.
160 settings= (TraceSettings)value;
163 return settings;
180 addTraceSettings(String scope, TraceSettings settings) argument
311 setClassSettings(String className, TraceSettings settings) argument
329 setMethodSettings(String className, String methodName, TraceSettings settings) argument
360 traceConstructor(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
382 traceMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object obj, Object[] args, StackTraceElement[] stackTrace) argument
403 traceStaticMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
423 traceReturn(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object ret, StackTraceElement[] stackTrace) argument
443 traceMessage(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
463 traceThrown(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
483 traceCaught(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
508 traceJEAccess(LogLevel level, TraceSettings settings, String signature, String sourceLocation, OperationStatus status, Database database, Transaction txn, DatabaseEntry key, DatabaseEntry data, StackTraceElement[] stackTrace) argument
532 traceData(LogLevel level, TraceSettings settings, String signature, String sourceLocation, byte[] data, StackTraceElement[] stackTrace) argument
554 traceProtocolElement(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String decodedForm, StackTraceElement[] stackTrace) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DDebugLogPublisher.java61 //The default global settings key.
64 //The map of class names to their trace settings.
67 //The map of class names to their method trace settings.
81 //Set the global settings so that nothing is logged.
126 * Get the trace settings for a specified class.
131 * @return The current trace settings for the class.
135 TraceSettings settings = TraceSettings.DISABLED;
157 // Use global settings, if nothing more specific was found.
161 settings= (TraceSettings)value;
164 return settings;
181 addTraceSettings(String scope, TraceSettings settings) argument
312 setClassSettings(String className, TraceSettings settings) argument
330 setMethodSettings(String className, String methodName, TraceSettings settings) argument
361 traceConstructor(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
383 traceMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object obj, Object[] args, StackTraceElement[] stackTrace) argument
404 traceStaticMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
424 traceReturn(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object ret, StackTraceElement[] stackTrace) argument
444 traceMessage(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
464 traceThrown(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
484 traceCaught(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
509 traceJEAccess(LogLevel level, TraceSettings settings, String signature, String sourceLocation, OperationStatus status, Database database, Transaction txn, DatabaseEntry key, DatabaseEntry data, StackTraceElement[] stackTrace) argument
533 traceData(LogLevel level, TraceSettings settings, String signature, String sourceLocation, byte[] data, StackTraceElement[] stackTrace) argument
555 traceProtocolElement(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String decodedForm, StackTraceElement[] stackTrace) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DDebugLogPublisher.java61 //The default global settings key.
64 //The map of class names to their trace settings.
67 //The map of class names to their method trace settings.
81 //Set the global settings so that nothing is logged.
126 * Get the trace settings for a specified class.
131 * @return The current trace settings for the class.
135 TraceSettings settings = TraceSettings.DISABLED;
157 // Use global settings, if nothing more specific was found.
161 settings= (TraceSettings)value;
164 return settings;
181 addTraceSettings(String scope, TraceSettings settings) argument
312 setClassSettings(String className, TraceSettings settings) argument
330 setMethodSettings(String className, String methodName, TraceSettings settings) argument
361 traceConstructor(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
383 traceMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object obj, Object[] args, StackTraceElement[] stackTrace) argument
404 traceStaticMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
424 traceReturn(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object ret, StackTraceElement[] stackTrace) argument
444 traceMessage(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
464 traceThrown(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
484 traceCaught(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
509 traceJEAccess(LogLevel level, TraceSettings settings, String signature, String sourceLocation, OperationStatus status, Database database, Transaction txn, DatabaseEntry key, DatabaseEntry data, StackTraceElement[] stackTrace) argument
533 traceData(LogLevel level, TraceSettings settings, String signature, String sourceLocation, byte[] data, StackTraceElement[] stackTrace) argument
555 traceProtocolElement(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String decodedForm, StackTraceElement[] stackTrace) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DDebugLogPublisher.java60 //The default global settings key.
63 //The map of class names to their trace settings.
66 //The map of class names to their method trace settings.
80 //Set the global settings so that nothing is logged.
125 * Get the trace settings for a specified class.
130 * @return The current trace settings for the class.
134 TraceSettings settings = TraceSettings.DISABLED;
156 // Use global settings, if nothing more specific was found.
160 settings= (TraceSettings)value;
163 return settings;
180 addTraceSettings(String scope, TraceSettings settings) argument
311 setClassSettings(String className, TraceSettings settings) argument
329 setMethodSettings(String className, String methodName, TraceSettings settings) argument
360 traceConstructor(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
382 traceMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object obj, Object[] args, StackTraceElement[] stackTrace) argument
403 traceStaticMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
423 traceReturn(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object ret, StackTraceElement[] stackTrace) argument
443 traceMessage(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
463 traceThrown(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
483 traceCaught(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
508 traceJEAccess(LogLevel level, TraceSettings settings, String signature, String sourceLocation, OperationStatus status, Database database, Transaction txn, DatabaseEntry key, DatabaseEntry data, StackTraceElement[] stackTrace) argument
532 traceData(LogLevel level, TraceSettings settings, String signature, String sourceLocation, byte[] data, StackTraceElement[] stackTrace) argument
554 traceProtocolElement(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String decodedForm, StackTraceElement[] stackTrace) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DDebugLogPublisher.java61 //The default global settings key.
64 //The map of class names to their trace settings.
67 //The map of class names to their method trace settings.
81 //Set the global settings so that nothing is logged.
126 * Get the trace settings for a specified class.
131 * @return The current trace settings for the class.
135 TraceSettings settings = TraceSettings.DISABLED;
157 // Use global settings, if nothing more specific was found.
161 settings= (TraceSettings)value;
164 return settings;
181 addTraceSettings(String scope, TraceSettings settings) argument
312 setClassSettings(String className, TraceSettings settings) argument
330 setMethodSettings(String className, String methodName, TraceSettings settings) argument
361 traceConstructor(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
383 traceMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object obj, Object[] args, StackTraceElement[] stackTrace) argument
404 traceStaticMethodEntry(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object[] args, StackTraceElement[] stackTrace) argument
424 traceReturn(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Object ret, StackTraceElement[] stackTrace) argument
444 traceMessage(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String msg, StackTraceElement[] stackTrace) argument
464 traceThrown(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
484 traceCaught(LogLevel level, TraceSettings settings, String signature, String sourceLocation, Throwable ex, StackTraceElement[] stackTrace) argument
509 traceJEAccess(LogLevel level, TraceSettings settings, String signature, String sourceLocation, OperationStatus status, Database database, Transaction txn, DatabaseEntry key, DatabaseEntry data, StackTraceElement[] stackTrace) argument
533 traceData(LogLevel level, TraceSettings settings, String signature, String sourceLocation, byte[] data, StackTraceElement[] stackTrace) argument
555 traceProtocolElement(LogLevel level, TraceSettings settings, String signature, String sourceLocation, String decodedForm, StackTraceElement[] stackTrace) argument
[all...]
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/setup/model/
H A DModelUtils.java41 final ListenerSettings settings = configuration.getListenerSettings();
50 if (settings.isTLSEnabled()) {
53 if (settings.isSSLEnabled()) {
55 cmdLines.add(String.valueOf(settings.getSSLPortNumber()));
58 final Certificate certificate = settings.getCertificate();
63 cmdLines.add(settings.getHostName());
H A DModel.java62 private ListenerSettings settings; field in class:Model
70 * Returns the listener settings.
72 * @return The listener settings.
75 return settings;
79 * Sets the listener settings.
82 * The listener settings to set.
85 settings = lSettings;
263 * @param settings
266 public void setServerRuntimeOptions(RuntimeOptions settings) { argument
267 serverRuntimeSettings = settings;
285 setImportLdifRuntimeOptions(RuntimeOptions settings) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/services/baseurl/
H A DFixedBaseURLProvider.java42 void init(OpenAMSettings settings, String realm) { argument
44 this.baseUrl = settings.getStringSetting(realm, FIXED_VALUE_SETTING);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/baseactivities/
H A DBaseActivity.java33 protected Settings settings; field in class:BaseActivity
40 settings = RoboGuice.getInjector(this).getInstance(Settings.class);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/services/baseurl/
H A DFixedBaseURLProvider.java42 void init(OpenAMSettings settings, String realm) { argument
44 this.baseUrl = settings.getStringSetting(realm, FIXED_VALUE_SETTING);
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java189 * settings, and the username from the previous authentication module in
284 final OathDeviceSettings settings = getOathDeviceSettings(id.getName(), id.getRealm());
307 return beginLogin(settings);
336 return doLoginSavedDevice(callbacks, state, settings);
382 private int beginLogin(OathDeviceSettings settings) throws AuthLoginException { argument
390 if (settings == null) {
405 final OathDeviceSettings settings) throws AuthLoginException,
408 OathDeviceSettings deviceToAuthAgainst = settings;
436 if (null == settings) {
459 OathDeviceSettings settings
403 doLoginSavedDevice(final Callback[] callbacks, final int state, final OathDeviceSettings settings) argument
471 isRecoveryCode(String otp, OathDeviceSettings settings, AMIdentity id) argument
519 paintRegisterDeviceCallback(AMIdentity id, OathDeviceSettings settings) argument
542 createQRCodeCallback(OathDeviceSettings settings, AMIdentity id, int callbackIndex) argument
558 getAuthenticatorAppRegistrationUri(OathDeviceSettings settings, AMIdentity id) argument
615 checkOTP(String otp, AMIdentity id, OathDeviceSettings settings) argument
792 setCounterAttr(AMIdentity id, int counter, OathDeviceSettings settings) argument
807 setLoginTime(AMIdentity id, long time, OathDeviceSettings settings) argument
[all...]
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/openam/oauth2/
H A DStatelessTokenStoreTest.java77 private OAuth2ProviderSettings settings; field in class:StatelessTokenStoreTest
90 given(providerSettingsFactory.get(request)).willReturn(settings);
96 given(settings.getTokenSigningAlgorithm()).willReturn("HS256");
97 given(settings.getSupportedIDTokenSigningAlgorithms()).willReturn(singleton("HS256"));
98 given(settings.getTokenHmacSharedSecret()).willReturn("c2VjcmV0");
113 given(providerSettingsFactory.get(request)).willReturn(settings);
119 given(settings.getTokenSigningAlgorithm()).willReturn("HS256");
120 given(settings.getSupportedIDTokenSigningAlgorithms()).willReturn(singleton("HS256"));
121 given(settings.getTokenHmacSharedSecret()).willReturn("c2VjcmV0");
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/debug/
H A DDebugTracer.java59 * A class that represents a settings cache entry.
71 * Construct a new DebugTracer object with cached settings obtained from
74 * @param publishers The array of publishers to obtain the settings from.
92 // Get the settings from all publishers.
96 PublisherSettings settings = new PublisherSettings();
98 settings.debugPublisher = publisher;
99 settings.classSettings = publisher.getClassSettings(className);
107 settings.methodSettings = publisher.getMethodSettings(className);
109 publisherSettings[i] = settings;
126 for (PublisherSettings settings
[all...]
/forgerock/opendj2/src/server/org/opends/server/loggers/debug/
H A DDebugTracer.java58 * A class that represents a settings cache entry.
70 * Construct a new DebugTracer object with cached settings obtained from
73 * @param publishers The array of publishers to obtain the settings from.
91 // Get the settings from all publishers.
95 PublisherSettings settings = new PublisherSettings();
97 settings.debugPublisher = publisher;
98 settings.classSettings = publisher.getClassSettings(className);
106 settings.methodSettings = publisher.getMethodSettings(className);
108 publisherSettings[i] = settings;
125 for (PublisherSettings settings
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/loggers/debug/
H A DDebugTracer.java59 * A class that represents a settings cache entry.
71 * Construct a new DebugTracer object with cached settings obtained from
74 * @param publishers The array of publishers to obtain the settings from.
92 // Get the settings from all publishers.
96 PublisherSettings settings = new PublisherSettings();
98 settings.debugPublisher = publisher;
99 settings.classSettings = publisher.getClassSettings(className);
107 settings.methodSettings = publisher.getMethodSettings(className);
109 publisherSettings[i] = settings;
126 for (PublisherSettings settings
[all...]

Completed in 98 milliseconds

12345