/forgerock/opendj2/src/server/org/opends/server/workflowelement/localbackend/ |
H A D | BooleanHolder.java | 42 * @param defaultValue 45 public BooleanHolder(boolean defaultValue) argument 47 this.value = defaultValue;
|
/forgerock/opendj2-hg/src/server/org/opends/server/workflowelement/localbackend/ |
H A D | BooleanHolder.java | 42 * @param defaultValue 45 public BooleanHolder(boolean defaultValue) argument 47 this.value = defaultValue;
|
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/ |
H A D | IConfigurationAccess.java | 48 * the supplied <code>defaultValue</code> is returned. 53 * <code>id</code> or <code>defaultValue</code> if no 59 public String getSystemConfiguration(String id, String defaultValue); argument 108 * still no value is found, the supplied <code>defaultValue</code> is 112 * @param defaultValue the default value to be used in case no configuration 117 * <code>defaultValue</code> if not available. 121 public String getConfigurationString(String id, String defaultValue); argument 142 * still no value is found, the supplied <code>defaultValue</code> is 146 * @param defaultValue the default value to be used in case no configuration 151 * <code>defaultValue</cod 153 getConfigurationLong(String id, long defaultValue) argument 183 getConfigurationInt(String id, int defaultValue) argument 213 getConfigurationBoolean(String id, boolean defaultValue) argument 245 getConfiguration(String id, String defaultValue) argument [all...] |
H A D | AgentBase.java | 47 public String getSystemConfiguration(String id, String defaultValue) { argument 48 return getManager().getSystemConfiguration(id, defaultValue); 75 public String getConfigurationString(String id, String defaultValue) { argument 76 return getManager().getConfigurationString(id, defaultValue); 97 public long getConfigurationLong(String id, long defaultValue) { argument 98 return getManager().getConfigurationLong(id, defaultValue); 111 public int getConfigurationInt(String id, int defaultValue) { argument 112 return getManager().getConfigurationInt(id, defaultValue); 125 public boolean getConfigurationBoolean(String id, boolean defaultValue) { argument 126 return getManager().getConfigurationBoolean(id, defaultValue); 139 getConfiguration(String id, String defaultValue) argument [all...] |
/forgerock/openidm-v4/openidm-system/src/main/java/org/forgerock/openidm/core/ |
H A D | SystemPropertyAccessor.java | 46 * @param defaultValue 56 public <T> T getProperty(String key, T defaultValue, Class<T> expected) { argument 59 && ((null != expected && expected.isAssignableFrom(String.class)) || defaultValue instanceof String)) { 60 value = (T) System.getProperty(key, (String) defaultValue); 62 return null != value ? value : (null != delegate) ? delegate.getProperty(key, defaultValue,
|
H A D | FrameworkPropertyAccessor.java | 53 * @param defaultValue 67 public <T> T getProperty(String key, T defaultValue, Class<T> expected) { argument 70 && ((null != expected && expected.isAssignableFrom(String.class)) || defaultValue instanceof String)) { 73 value = defaultValue; 76 return null != value ? value : (null != delegate) ? delegate.getProperty(key, defaultValue,
|
H A D | PropertyAccessor.java | 39 * @param defaultValue 51 <T> T getProperty(String key, T defaultValue, Class<T> expected); argument
|
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/ |
H A D | BundleUtils.java | 31 * @param defaultValue The default value. 32 * @return The bundle's value for the given key, or {@code defaultValue} if there is no value. 34 public static String getStringWithDefault(ResourceBundle bundle, String key, String defaultValue) { argument 38 return defaultValue;
|
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/core/ |
H A D | Attachment.java | 40 private final T defaultValue; field in class:Attachment 48 * @param defaultValue 52 public Attachment(final String name, final T defaultValue) { argument 54 this.defaultValue = defaultValue; 67 value = defaultValue;
|
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/common/ |
H A D | Backlink.js | 41 const defaultValue = _.startCase(`${pageFragment}`); 43 "title": $.t(`console.common.navigation.${pageFragment}`, { defaultValue }),
|
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/ |
H A D | RemoveAttributeSchemaDefaultValues.java | 71 String defaultValue = null; 75 defaultValue = (String)i.next(); 77 attributeSchemaName, defaultValue}; 85 attributeSchemaName, defaultValue, 91 attrSchema.removeDefaultValue(defaultValue); 101 attributeSchemaName, defaultValue, e.getMessage()}; 109 attributeSchemaName, defaultValue, e.getMessage()};
|
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/ |
H A D | RemoveAttributeSchemaDefaultValues.java | 71 String defaultValue = null; 75 defaultValue = (String)i.next(); 77 attributeSchemaName, defaultValue}; 85 attributeSchemaName, defaultValue, 91 attrSchema.removeDefaultValue(defaultValue); 101 attributeSchemaName, defaultValue, e.getMessage()}; 109 attributeSchemaName, defaultValue, e.getMessage()};
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/ |
H A D | AttributeParser.java | 116 * {@link Function}, or {@code defaultValue} if the attribute does not 123 * @param defaultValue 127 public <T> T as(final Function<ByteString, ? extends T, NeverThrowsException> f, final T defaultValue) { argument 131 return defaultValue; 147 * {@code defaultValue} if the attribute does not contain any values. 149 * @param defaultValue 153 public boolean asBoolean(final boolean defaultValue) { argument 154 return as(Functions.byteStringToBoolean(), defaultValue); 168 * Returns the first value, or {@code defaultValue} if the attribute does 171 * @param defaultValue 175 asByteString(final ByteString defaultValue) argument 199 asGeneralizedTime(final GeneralizedTime defaultValue) argument 221 asInteger(final int defaultValue) argument 243 asLong(final long defaultValue) argument 458 asString(final String defaultValue) argument [all...] |
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/configuration/ |
H A D | SystemPropertiesManager.java | 144 * @param defaultValue Default value if the property is not found. 147 public static String get(String key, String defaultValue) { argument 150 ? value : defaultValue; 169 * @param defaultValue The default value to return when the setting is not defined. 172 public static boolean getAsBoolean(String key, boolean defaultValue) { argument 175 return defaultValue; 186 * @param defaultValue the default value to use if the property is not present or not an integer. 189 public static int getAsInt(String key, int defaultValue) { argument 190 int result = defaultValue;
|
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/configuration/ |
H A D | SystemPropertiesManager.java | 144 * @param defaultValue Default value if the property is not found. 147 public static String get(String key, String defaultValue) { argument 150 ? value : defaultValue; 169 * @param defaultValue The default value to return when the setting is not defined. 172 public static boolean getAsBoolean(String key, boolean defaultValue) { argument 175 return defaultValue; 186 * @param defaultValue the default value to use if the property is not present or not an integer. 189 public static int getAsInt(String key, int defaultValue) { argument 190 int result = defaultValue;
|
/forgerock/opendj-b2.6/src/server/org/opends/server/util/args/ |
H A D | StringArgument.java | 91 * @param defaultValue The default value that should be used for this 107 Message valuePlaceholder, String defaultValue, 112 needsValue, valuePlaceholder, defaultValue, propertyName, 104 StringArgument(String name, Character shortIdentifier, String longIdentifier, boolean isRequired, boolean isMultiValued, boolean needsValue, Message valuePlaceholder, String defaultValue, String propertyName, Message description) argument
|
/forgerock/opendj2/src/server/org/opends/server/util/args/ |
H A D | StringArgument.java | 90 * @param defaultValue The default value that should be used for this 106 Message valuePlaceholder, String defaultValue, 111 needsValue, valuePlaceholder, defaultValue, propertyName, 103 StringArgument(String name, Character shortIdentifier, String longIdentifier, boolean isRequired, boolean isMultiValued, boolean needsValue, Message valuePlaceholder, String defaultValue, String propertyName, Message description) argument
|
/forgerock/opendj2.6.2/src/server/org/opends/server/util/args/ |
H A D | StringArgument.java | 91 * @param defaultValue The default value that should be used for this 107 Message valuePlaceholder, String defaultValue, 112 needsValue, valuePlaceholder, defaultValue, propertyName, 104 StringArgument(String name, Character shortIdentifier, String longIdentifier, boolean isRequired, boolean isMultiValued, boolean needsValue, Message valuePlaceholder, String defaultValue, String propertyName, Message description) argument
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/args/ |
H A D | StringArgument.java | 91 * @param defaultValue The default value that should be used for this 107 Message valuePlaceholder, String defaultValue, 112 needsValue, valuePlaceholder, defaultValue, propertyName, 104 StringArgument(String name, Character shortIdentifier, String longIdentifier, boolean isRequired, boolean isMultiValued, boolean needsValue, Message valuePlaceholder, String defaultValue, String propertyName, Message description) argument
|
/forgerock/opendj2-hg/src/server/org/opends/server/util/args/ |
H A D | StringArgument.java | 90 * @param defaultValue The default value that should be used for this 106 Message valuePlaceholder, String defaultValue, 111 needsValue, valuePlaceholder, defaultValue, propertyName, 103 StringArgument(String name, Character shortIdentifier, String longIdentifier, boolean isRequired, boolean isMultiValued, boolean needsValue, Message valuePlaceholder, String defaultValue, String propertyName, Message description) argument
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/callbacks/ |
H A D | HiddenValueCallback.java | 29 private final String defaultValue = ""; field in class:HiddenValueCallback 86 return defaultValue;
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/callbacks/ |
H A D | HiddenValueCallback.java | 29 private final String defaultValue = ""; field in class:HiddenValueCallback 86 return defaultValue;
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/ |
H A D | CoreTokenConfig.java | 85 * @param defaultValue Default value to use in the event of an error of any kind. 88 private static int getSystemManagerPropertyAsInt(String prop, int defaultValue) { argument 90 return defaultValue; 95 return defaultValue; 101 return defaultValue;
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/common/ |
H A D | CacheBlock.java | 112 private static int getPropertyIntValue(String key, int defaultValue) { argument 113 int value = defaultValue; 119 value = defaultValue;
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/common/ |
H A D | IdCacheBlock.java | 118 private static int getPropertyIntValue(String key, int defaultValue) { argument 119 int value = defaultValue; 125 value = defaultValue;
|