Searched defs:value (Results 251 - 275 of 6334) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj-b2.6/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
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/admin/
H A DAttributeTypePropertyDefinitionTest.java90 * @param value
94 public void testDecodeValue(String value) { argument
97 AttributeType expected = DirectoryServer.getAttributeType(value);
98 assertEquals(d.decodeValue(value), expected);
106 * @param value
110 public void testEncodeValue(String value) { argument
113 assertEquals(d.encodeValue(d.decodeValue(value)), value);
131 * @param value
135 public void testDecodeValue2(String value) { argument
150 testDecodeValue3(String value) argument
[all...]
H A DBooleanPropertyDefinitionTest.java93 * @param value to decode
94 * @param expected value
97 public void testDecodeValue(String value, Boolean expected) { argument
99 assertEquals(d.decodeValue(value), expected);
114 * @param value to decode
118 public void testDecodeValue2(String value) { argument
120 d.decodeValue(value);
H A DDNPropertyDefinitionTest.java147 * @param value
148 * The value to be validated.
153 public void testValidateLegalValues(String baseDN, String value) argument
159 pd.validateValue(DN.decode(value));
169 * @param value
170 * The value to be validated.
175 public void testValidateIllegalValues(String baseDN, String value) argument
181 pd.validateValue(DN.decode(value));
191 * @param value
192 * The value t
195 testDecodeLegalValues(String baseDN, String value) argument
214 testDecodeIllegalValues(String baseDN, String value) argument
[all...]
H A DDurationUnitTest.java99 * @param value ordinal value
103 public void testToString(long value, String expected) { argument
104 assertEquals(DurationUnit.toString(value), expected);
109 * @param value for parsing
112 public void testParseValue(long expected, String value) { argument
113 assertEquals(DurationUnit.parseValue(value), expected);
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DValueInfoTest.java55 AttributeValue att2 = AttributeValues.create(type, "value");
77 public void valueInfo(AttributeValue value, argument
83 AttrValueHistorical valInfo1 = new AttrValueHistorical(value,CNupdate,CNdelete);
84 AttrValueHistorical valInfo2 = new AttrValueHistorical(value,CNupdate,CNupdate);
110 assertTrue(valInfo1.getAttributeValue().equals(value)) ;
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/schema/
H A DConfigurableAttributeSyntaxTest.java84 // - a value that must be tested for correctness.
85 // - a boolean indicating if the value is correct.
109 public void testAcceptableValues(ConfigEntry config, String oid, String value, argument
128 // check the syntax of the given value.
130 ByteString.valueOf(value), new MessageBuilder());
H A DEqualLengthApproximateMatchingRule.java128 * Retrieves the normalized form of the provided value, which is best suited
129 * for efficiently performing matching operations on that value.
131 * @param value The value to be normalized.
133 * @return The normalized version of the provided value.
135 * @throws DirectoryException If the provided value is invalid according to
139 public ByteString normalizeValue(ByteSequence value) argument
142 // Any value is acceptable, so we can just return a copy of the
143 // value.
144 return value
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCategorizedComboBoxElement.java35 private Object value; field in class:CategorizedComboBoxElement
58 * @param value the value of the element.
61 public CategorizedComboBoxElement(Object value, Type type) argument
63 this.value = value;
65 this.hashCode = this.value.hashCode() + this.type.hashCode();
69 * Returns the value.
70 * @return the value.
74 return value;
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java52 public Component getTableCellRendererComponent(JTable table, Object value, argument
55 Component comp = renderer.getTableCellRendererComponent(table, value,
58 Utilities.stripHtmlToSingleLine(String.valueOf(value)));
H A DBaseDNCellRenderer.java54 public Component getTableCellRendererComponent(JTable table, Object value, argument
56 String text = (String)value;
H A DIndexCellRenderer.java62 public Component getListCellRendererComponent(JList list, Object value, argument
66 if (value instanceof AbstractIndexDescriptor)
68 mustReindex = info.mustReindex((AbstractIndexDescriptor)value);
70 if (value instanceof IndexDescriptor)
72 String name = ((IndexDescriptor)value).getName();
73 value = mustReindex ? name + " (*)" : name;
75 } else if (value instanceof VLVIndexDescriptor)
78 Utilities.getVLVNameInCellRenderer((VLVIndexDescriptor)value);
79 value = mustReindex ? name + " (*)" : name;
81 Component comp = super.getListCellRendererComponent(list, value, inde
[all...]
H A DNoLeftInsetCategoryComboBoxRenderer.java56 public Component getListCellRendererComponent(JList list, Object value, argument
59 Component comp = super.getListCellRendererComponent(list, value, index,
61 if (value instanceof CategorizedComboBoxElement)
63 CategorizedComboBoxElement element = (CategorizedComboBoxElement)value;
H A DSchemaElementComboBoxCellRenderer.java69 public Component getListCellRendererComponent(JList list, Object value, argument
72 if (value instanceof AttributeSyntax<?>)
74 String syntaxName = ((AttributeSyntax<?>)value).getSyntaxName();
77 value = ((AttributeSyntax<?>)value).getOID();
81 value = syntaxName;
84 else if (value instanceof CommonSchemaElements)
86 value = ((CommonSchemaElements)value).getNameOrOID();
88 else if (value instanceo
[all...]
H A DVLVSortOrderRenderer.java58 public Component getListCellRendererComponent(JList list, Object value, argument
61 if (value instanceof VLVSortOrder)
63 VLVSortOrder v = (VLVSortOrder)value;
66 value = INFO_CTRL_PANEL_VLV_ASCENDING_VLV_INDEX.get(
71 value = INFO_CTRL_PANEL_VLV_DESCENDING_VLV_INDEX.get(
76 list, value, index, isSelected, cellHasFocus);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCategorizedComboBoxElement.java36 private Object value; field in class:CategorizedComboBoxElement
59 * @param value the value of the element.
62 public CategorizedComboBoxElement(Object value, Type type) argument
64 this.value = value;
66 this.hashCode = this.value.hashCode() + this.type.hashCode();
70 * Returns the value.
71 * @return the value.
75 return value;
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DValueInfoTest.java56 AttributeValue att2 = AttributeValues.create(type, "value");
78 public void valueInfo(AttributeValue value, CSN csnUpdate, CSN csnDelete) throws Exception argument
81 AttrValueHistorical valInfo1 = new AttrValueHistorical(value, csnUpdate, csnDelete);
82 AttrValueHistorical valInfo2 = new AttrValueHistorical(value, csnUpdate, csnUpdate);
103 assertEquals(valInfo1.getAttributeValue(), value);
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/schema/
H A DConfigurableAttributeSyntaxTest.java84 // - a value that must be tested for correctness.
85 // - a boolean indicating if the value is correct.
109 public void testAcceptableValues(ConfigEntry config, String oid, String value, argument
128 // check the syntax of the given value.
130 ByteString.valueOf(value), new MessageBuilder());
H A DEqualLengthApproximateMatchingRule.java127 * Retrieves the normalized form of the provided value, which is best suited
128 * for efficiently performing matching operations on that value.
130 * @param value The value to be normalized.
132 * @return The normalized version of the provided value.
134 * @throws DirectoryException If the provided value is invalid according to
138 public ByteString normalizeValue(ByteSequence value) argument
141 // Any value is acceptable, so we can just return a copy of the
142 // value.
143 return value
[all...]
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DAuthPasswordExactEqualityMatchingRule.java140 * Retrieves the normalized form of the provided value, which is best suited
141 * for efficiently performing matching operations on that value.
143 * @param value The value to be normalized.
145 * @return The normalized version of the provided value.
147 * @throws DirectoryException If the provided value is invalid according to
151 public ByteString normalizeValue(ByteSequence value) argument
157 AuthPasswordSyntax.decodeAuthPassword(value.toString());
184 return ByteString.valueOf(value.toString());
186 return ByteString.valueOf(value
[all...]
H A DBitStringEqualityMatchingRule.java131 * Retrieves the normalized form of the provided value, which is best suited
132 * for efficiently performing matching operations on that value.
134 * @param value The value to be normalized.
136 * @return The normalized version of the provided value.
138 * @throws DirectoryException If the provided value is invalid according to
142 public ByteString normalizeValue(ByteSequence value) argument
145 String valueString = value.toString().toUpperCase();
152 value.toString());
173 value
[all...]
H A DBooleanEqualityMatchingRule.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();
160 value.toString());
H A DCaseExactEqualityMatchingRule.java125 * Retrieves the normalized form of the provided value, which is best suited
126 * for efficiently performing matching operations on that value.
128 * @param value The value to be normalized.
130 * @return The normalized version of the provided value.
132 * @throws DirectoryException If the provided value is invalid according to
136 public ByteString normalizeValue(ByteSequence value) argument
140 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
145 if (value.length() > 0)
147 // This should only happen if the value i
[all...]
H A DCaseExactIA5EqualityMatchingRule.java134 * Retrieves the normalized form of the provided value, which is best suited
135 * for efficiently performing matching operations on that value.
137 * @param value The value to be normalized.
139 * @return The normalized version of the provided value.
141 * @throws DirectoryException If the provided value is invalid according to
145 public ByteString normalizeValue(ByteSequence value) argument
149 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
154 if (value.length() > 0)
156 // This should only happen if the value i
[all...]
H A DCaseExactIA5SubstringMatchingRule.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 buffer.append(value.toString().trim());
155 if (value.length() > 0)
157 // This should only happen if the value i
[all...]

Completed in 88 milliseconds

<<11121314151617181920>>