Searched defs:value (Results 301 - 325 of 6334) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/admin/
H A DBooleanPropertyDefinitionTest.java92 * @param value to decode
93 * @param expected value
96 public void testDecodeValue(String value, Boolean expected) { argument
98 assertEquals(d.decodeValue(value), expected);
113 * @param value to decode
117 public void testDecodeValue2(String value) { argument
119 d.decodeValue(value);
H A DDNPropertyDefinitionTest.java146 * @param value
147 * The value to be validated.
152 public void testValidateLegalValues(String baseDN, String value) argument
158 pd.validateValue(DN.decode(value));
168 * @param value
169 * The value to be validated.
174 public void testValidateIllegalValues(String baseDN, String value) argument
180 pd.validateValue(DN.decode(value));
190 * @param value
191 * The value t
194 testDecodeLegalValues(String baseDN, String value) argument
213 testDecodeIllegalValues(String baseDN, String value) argument
[all...]
H A DDurationUnitTest.java98 * @param value ordinal value
102 public void testToString(long value, String expected) { argument
103 assertEquals(DurationUnit.toString(value), expected);
108 * @param value for parsing
111 public void testParseValue(long expected, String value) { argument
112 assertEquals(DurationUnit.parseValue(value), expected);
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DIllegalPropertyValueException.java40 * Thrown to indicate that a property value was invalid according to
50 // The illegal property value.
51 private final Object value; field in class:IllegalPropertyValueException
56 * Create a new illegal property value exception.
60 * @param value
61 * The illegal property value.
63 public IllegalPropertyValueException(PropertyDefinition<?> pd, Object value) { argument
64 super(pd, createMessage(pd, value));
65 this.value = value;
80 IllegalPropertyValueException(PropertyDefinition<?> pd, Object value, Throwable cause) argument
101 createMessage(PropertyDefinition<?> pd, Object value) argument
[all...]
H A DIllegalPropertyValueStringException.java40 * Thrown to indicate that a property value string was invalid
50 // The illegal property value string.
51 private final String value; field in class:IllegalPropertyValueStringException
56 * Create a new illegal property value string exception.
60 * @param value
61 * The illegal property value string.
64 String value) {
65 super(pd, createMessage(pd, value));
66 this.value = value;
63 IllegalPropertyValueStringException(PropertyDefinition<?> pd, String value) argument
81 IllegalPropertyValueStringException(PropertyDefinition<?> pd, String value, Throwable cause) argument
101 createMessage(PropertyDefinition<?> pd, String value) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DExtensibleIndexer.java41 * this interface to create the keys for an attribute value.
80 * @param value
81 * The attribute value for which keys are required.
85 public abstract void getKeys(AttributeValue value, argument
94 * @param value
98 * corresponding to the boolean value <code>true
106 public abstract void getKeys(AttributeValue value, argument
H A DSubstringMatchingRule.java51 * Normalizes the provided value fragment into a form that can be
54 * @param substring The value fragment to be normalized.
56 * @return The normalized form of the value fragment.
58 * @throws DirectoryException If the provided value fragment is
68 * Determines whether the provided value matches the given substring
73 * @param value The normalized value against which to
75 * @param subInitial The normalized substring value fragment
77 * the target value.
78 * @param subAnyElements The normalized substring value fragment
88 valueMatchesSubstring(ByteSequence value, ByteSequence subInitial, List<ByteSequence> subAnyElements, ByteSequence subFinal) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/controls/
H A DAccountUsableRequestControl.java47 * value.
62 ByteString value)
65 if (value != null)
112 * Writes this control's value to an ASN.1 writer. The value (if any) must be
119 // No value element.
61 decode(boolean isCritical, ByteString value) argument
H A DPasswordExpiredControl.java45 * This class implements the Netscape password expired control. The value for
61 public PasswordExpiredControl decode(boolean isCritical, ByteString value) argument
64 if (value != null)
68 Integer.parseInt(value.toString());
115 * Writes this control's value to an ASN.1 writer. The value (if any) must be
H A DPasswordPolicyRequestControl.java46 * draft-behera-ldap-password-policy. It does not have a value.
61 ByteString value)
64 if (value != null)
116 * Writes this control's value to an ASN.1 writer. The value (if any) must be
124 // No value element.
60 decode(boolean isCritical, ByteString value) argument
H A DSubtreeDeleteControl.java63 ByteString value) throws DirectoryException
65 if (value != null)
62 decode(boolean isCritical, ByteString value) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/monitors/
H A DSystemInfoMonitorProvider.java218 for (String value : supportedTlsProtocols)
220 builder.add(value);
228 for (String value : supportedTlsCiphers)
230 builder.add(value);
244 * @param value The value to use for the attribute.
248 private Attribute createAttribute(String name, String value) argument
254 builder.add(AttributeValues.create(attrType, value));
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DLDAPControl.java45 // The control value.
46 private ByteString value; field in class:LDAPControl
52 * critical, and will not have a value.
65 * not have a value.
79 * Creates a new LDAP control with the specified OID, criticality, and value.
84 * @param value The value for this LDAP control.
86 public LDAPControl(String oid, boolean isCritical, ByteString value) argument
89 this.value = value;
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/common/
H A DAssuredMode.java43 // The mode value
44 private byte value = -1; field in class:AssuredMode
46 private AssuredMode(byte value) argument
48 this.value = value;
53 * @param value The numeric value for the mode to return
55 * @throws java.lang.IllegalArgumentException If provided mode value is
58 public static AssuredMode valueOf(byte value) throws IllegalArgumentException argument
60 switch (value)
[all...]
H A DServerStatus.java89 // The status value
90 private byte value = -1; field in class:ServerStatus
92 private ServerStatus(byte value) argument
94 this.value = value;
99 * @param value The numeric value for the status to return
101 * @throws java.lang.IllegalArgumentException If provided status value is
104 public static ServerStatus valueOf(byte value) throws IllegalArgumentException argument
106 switch (value)
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/service/
H A DReplicationMonitor.java261 * Add an attribute with an integer value to the list of monitoring
266 * @param value The integer value of he attribute to add.
271 int value)
275 String.valueOf(value))));
279 * Add an attribute with an integer value to the list of monitoring
284 * @param value The integer value of he attribute to add.
289 long value)
293 String.valueOf(value))));
268 addMonitorData( ArrayList<Attribute> attributes, String name, int value) argument
286 addMonitorData( ArrayList<Attribute> attributes, String name, long value) argument
304 addMonitorData( ArrayList<Attribute> attributes, String name, String value) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DAuthPasswordExactEqualityMatchingRule.java141 * Retrieves the normalized form of the provided value, which is best suited
142 * for efficiently performing matching operations on that value.
144 * @param value The value to be normalized.
146 * @return The normalized version of the provided value.
148 * @throws DirectoryException If the provided value is invalid according to
152 public ByteString normalizeValue(ByteSequence value) argument
158 AuthPasswordSyntax.decodeAuthPassword(value.toString());
185 return ByteString.valueOf(value.toString());
187 return ByteString.valueOf(value
[all...]
H A DBitStringEqualityMatchingRule.java132 * Retrieves the normalized form of the provided value, which is best suited
133 * for efficiently performing matching operations on that value.
135 * @param value The value to be normalized.
137 * @return The normalized version of the provided value.
139 * @throws DirectoryException If the provided value is invalid according to
143 public ByteString normalizeValue(ByteSequence value) argument
146 String valueString = value.toString().toUpperCase();
153 value.toString());
174 value
[all...]
H A DBooleanEqualityMatchingRule.java133 * Retrieves the normalized form of the provided value, which is best suited
134 * for efficiently performing matching operations on that value.
136 * @param value The value to be normalized.
138 * @return The normalized version of the provided value.
140 * @throws DirectoryException If the provided value is invalid according to
144 public ByteString normalizeValue(ByteSequence value) argument
147 String valueString = value.toString().toUpperCase();
161 value.toString());
H A DCaseExactEqualityMatchingRule.java126 * Retrieves the normalized form of the provided value, which is best suited
127 * for efficiently performing matching operations on that value.
129 * @param value The value to be normalized.
131 * @return The normalized version of the provided value.
133 * @throws DirectoryException If the provided value is invalid according to
137 public ByteString normalizeValue(ByteSequence value) argument
141 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
146 if (value.length() > 0)
148 // This should only happen if the value i
[all...]
H A DCaseExactIA5EqualityMatchingRule.java135 * Retrieves the normalized form of the provided value, which is best suited
136 * for efficiently performing matching operations on that value.
138 * @param value The value to be normalized.
140 * @return The normalized version of the provided value.
142 * @throws DirectoryException If the provided value is invalid according to
146 public ByteString normalizeValue(ByteSequence value) argument
150 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
155 if (value.length() > 0)
157 // This should only happen if the value i
[all...]
H A DCaseExactIA5SubstringMatchingRule.java136 * Retrieves the normalized form of the provided value, which is best suited
137 * for efficiently performing matching operations on that value.
139 * @param value The value to be normalized.
141 * @return The normalized version of the provided value.
143 * @throws DirectoryException If the provided value is invalid according to
147 public ByteString normalizeValue(ByteSequence value) argument
151 buffer.append(value.toString().trim());
156 if (value.length() > 0)
158 // This should only happen if the value i
[all...]
H A DCaseExactSubstringMatchingRule.java130 * Retrieves the normalized form of the provided value, which is best suited
131 * for efficiently performing matching operations on that value.
133 * @param value The value to be normalized.
135 * @return The normalized version of the provided value.
137 * @throws DirectoryException If the provided value is invalid according to
141 public ByteString normalizeValue(ByteSequence value) argument
145 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
150 if (value.length() > 0)
152 // This should only happen if the value i
[all...]
H A DCaseIgnoreEqualityMatchingRule.java130 * Retrieves the normalized form of the provided value, which is best suited
131 * for efficiently performing matching operations on that value.
133 * @param value The value to be normalized.
135 * @return The normalized version of the provided value.
137 * @throws DirectoryException If the provided value is invalid according to
141 public ByteString normalizeValue(ByteSequence value) argument
145 prepareUnicode(buffer, value, TRIM, CASE_FOLD);
150 if (value.length() > 0)
152 // This should only happen if the value i
[all...]
H A DCaseIgnoreIA5EqualityMatchingRule.java135 * Retrieves the normalized form of the provided value, which is best suited
136 * for efficiently performing matching operations on that value.
138 * @param value The value to be normalized.
140 * @return The normalized version of the provided value.
142 * @throws DirectoryException If the provided value is invalid according to
146 public ByteString normalizeValue(ByteSequence value) argument
150 prepareUnicode(buffer, value, TRIM, CASE_FOLD);
155 if (value.length() > 0)
157 // This should only happen if the value i
[all...]

Completed in 493 milliseconds

<<11121314151617181920>>