Modifier and Type | Method and Description |
---|---|
Value<?> |
AttributeValueAssertion.getAssertionValue()
Get the assertion value
|
Modifier and Type | Method and Description |
---|---|
void |
AttributeValueAssertion.setAssertionValue(Value<?> assertionValue)
Set the assertion value
|
Modifier and Type | Method and Description |
---|---|
void |
AddRequestCodec.addAttributeValue(Value<?> value)
Add a new value to the current attribute
|
Modifier and Type | Method and Description |
---|---|
void |
ModifyRequestCodec.addAttributeValue(Value<?> value)
Add a new value to the current attribute
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
ExtensibleMatchFilter.getMatchValue()
Get the matchValue
|
Modifier and Type | Method and Description |
---|---|
void |
ExtensibleMatchFilter.setMatchValue(Value<?> matchValue)
Set the matchValue
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractValue<T>
A wrapper around byte[] values in entries.
|
class |
BinaryValue
A server side schema aware wrapper around a binary attribute value.
|
class |
StringValue
A server side schema aware wrapper around a String attribute value.
|
Modifier and Type | Method and Description |
---|---|
Value<T> |
Value.clone() |
Value<T> |
AbstractValue.clone() |
Value<?> |
EntryAttribute.get()
Get the first value of this attribute.
|
Value<?> |
EntryAttribute.get(int i)
Get the nth value of this attribute.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Value<?>> |
EntryAttribute.getAll()
Returns an iterator over all the attribute's values.
|
Modifier and Type | Method and Description |
---|---|
void |
ServerEntry.add(AttributeType attributeType,
Value<?>... values)
Add an attribute (represented by its AttributeType and some values) into an
entry.
|
void |
DefaultServerEntry.add(AttributeType attributeType,
Value<?>... values)
Add an attribute (represented by its AttributeType and some values) into an
entry.
|
void |
ServerEntry.add(String upId,
AttributeType attributeType,
Value<?>... values)
Add an attribute (represented by its AttributeType and some values) into an
entry.
|
void |
DefaultServerEntry.add(String upId,
AttributeType attributeType,
Value<?>... values)
Add an attribute (represented by its AttributeType and some values) into an
entry.
|
void |
Entry.add(String upId,
Value<?>... values)
Add some Values to the current Entry.
|
void |
DefaultServerEntry.add(String upId,
Value<?>... values)
Add an attribute (represented by its ID and Value values) into an entry.
|
int |
EntryAttribute.add(Value<?>... val)
Adds some values to this attribute.
|
int |
DefaultServerAttribute.add(Value<?>... vals) |
int |
BinaryValue.compareTo(Value<byte[]> value) |
int |
StringValue.compareTo(Value<String> value) |
boolean |
ServerEntry.contains(AttributeType attributeType,
Value<?>... values)
Checks if an entry contains an attribute with some given binary values.
|
boolean |
DefaultServerEntry.contains(AttributeType attributeType,
Value<?>... values)
Checks if an entry contains an attribute with some given binary values.
|
boolean |
Entry.contains(String upId,
Value<?>... values)
Checks if an entry contains an attribute with some values.
|
boolean |
DefaultServerEntry.contains(String id,
Value<?>... values)
Checks if an entry contains an attribute with some values.
|
boolean |
EntryAttribute.contains(Value<?>... vals)
Indicates whether the specified values are some of the attribute's values.
|
boolean |
DefaultServerAttribute.contains(Value<?>... vals)
Indicates whether the specified values are some of the attribute's values.
|
EntryAttribute |
ServerEntry.put(AttributeType attributeType,
Value<?>... values)
Places a new attribute with the supplied AttributeType and some values
into the attribute collection.
|
EntryAttribute |
DefaultServerEntry.put(AttributeType attributeType,
Value<?>... values)
Places a new attribute with the supplied AttributeType and some values
into the attribute collection.
|
EntryAttribute |
ServerEntry.put(String upId,
AttributeType attributeType,
Value<?>... values)
Places a new attribute with the supplied AttributeType and some values
into the attribute collection.
|
EntryAttribute |
DefaultServerEntry.put(String upId,
AttributeType attributeType,
Value<?>... values)
Places a new attribute with the supplied AttributeType and some values
into the attribute collection.
|
EntryAttribute |
Entry.put(String upId,
Value<?>... values)
Put an attribute (represented by its ID and some values) into an entry.
|
EntryAttribute |
DefaultServerEntry.put(String upId,
Value<?>... values)
Put an attribute (represented by its ID and some values) into an entry.
|
int |
EntryAttribute.put(Value<?>... vals)
Puts some values to this attribute.
|
boolean |
ServerEntry.remove(AttributeType attributeType,
Value<?>... values)
Removes the specified values from an attribute.
|
boolean |
DefaultServerEntry.remove(AttributeType attributeType,
Value<?>... values)
Removes the specified values from an attribute.
|
boolean |
Entry.remove(String upId,
Value<?>... values)
Removes the specified values from an attribute.
|
boolean |
DefaultServerEntry.remove(String upId,
Value<?>... values)
Removes the specified Value values from an attribute.
|
boolean |
EntryAttribute.remove(Value<?>... vals)
Removes all the values that are equal to the given values.
|
boolean |
DefaultServerAttribute.remove(Value<?>... vals) |
Modifier and Type | Method and Description |
---|---|
int |
EntryAttribute.put(List<Value<?>> vals)
Puts a list of values into this attribute.
|
Constructor and Description |
---|
DefaultServerAttribute(AttributeType attributeType,
Value<?>... vals)
Doc me more!
If the value does not correspond to the same attributeType, then it's
wrapped value is copied into a new Value which uses the specified
attributeType.
|
DefaultServerAttribute(String upId,
AttributeType attributeType,
Value<?>... vals)
Doc me more!
If the value does not correspond to the same attributeType, then it's
wrapped value is copied into a new Value which uses the specified
attributeType.
|
Modifier and Type | Field and Description |
---|---|
protected Set<Value<?>> |
DefaultClientAttribute.values
The set of contained values
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
DefaultClientAttribute.get()
Get the first value of this attribute.
|
Value<?> |
DefaultClientAttribute.get(int i)
Get the nth value of this attribute.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Value<?>> |
DefaultClientAttribute.getAll()
Returns an iterator over all the attribute's values.
|
Iterator<Value<?>> |
DefaultClientAttribute.iterator()
An iterator on top of the stored values.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultClientEntry.add(String upId,
Value<?>... values)
Add an attribute (represented by its ID and Value values) into an entry.
|
int |
DefaultClientAttribute.add(Value<?>... vals)
Adds some values to this attribute.
|
boolean |
DefaultClientEntry.contains(String upId,
Value<?>... values)
Checks if an entry contains an attribute with some values.
|
boolean |
DefaultClientAttribute.contains(Value<?>... vals)
Indicates whether the specified values are some of the attribute's values.
|
EntryAttribute |
DefaultClientEntry.put(String upId,
Value<?>... values)
Put an attribute (represented by its ID and some values) into an entry.
|
int |
DefaultClientAttribute.put(Value<?>... vals)
Puts some values to this attribute.
|
boolean |
DefaultClientEntry.remove(String upId,
Value<?>... values)
Removes the specified values from an attribute.
|
boolean |
DefaultClientAttribute.remove(Value<?>... vals)
Removes all the values that are equal to the given values.
|
Modifier and Type | Method and Description |
---|---|
int |
DefaultClientAttribute.put(List<Value<?>> vals)
Puts a list of values into this attribute.
|
Constructor and Description |
---|
DefaultClientAttribute(String upId,
Value<?>... vals)
If the value does not correspond to the same attributeType, then it's
wrapped value is copied into a new ClientValue which uses the specified
attributeType.
|
Modifier and Type | Field and Description |
---|---|
protected Value<T> |
SimpleNode.value
the value
|
Modifier and Type | Method and Description |
---|---|
protected static Value<?> |
AbstractExprNode.escapeFilterValue(Value<?> value)
Handles the escaping of special characters in LDAP search filter assertion values using the
<valueencoding> rule as described in
RFC 4515.
|
Value<?> |
SimpleNode.getEscapedValue() |
Value<?> |
ExtensibleNode.getEscapedValue() |
Value<T> |
SimpleNode.getValue()
Gets the value.
|
Value<?> |
ExtensibleNode.getValue()
Gets the value.
|
Modifier and Type | Method and Description |
---|---|
protected static Value<?> |
AbstractExprNode.escapeFilterValue(Value<?> value)
Handles the escaping of special characters in LDAP search filter assertion values using the
<valueencoding> rule as described in
RFC 4515.
|
void |
ExtensibleNode.setValue(Value<?> value)
Sets the value.
|
void |
SimpleNode.setValue(Value<T> value)
Sets the value of this node.
|
Constructor and Description |
---|
ApproximateNode(String attribute,
Value<T> value)
Creates a new ApproximateNode object.
|
EqualityNode(String attribute,
Value<T> value)
Creates a new Equality object.
|
EqualityNode(String attribute,
Value<T> value,
AssertionType assertionType)
Creates a new Equality object.
|
ExtensibleNode(String attribute,
Value<?> value,
String matchingRuleId,
boolean dnAttributes)
Creates a new ExtensibleNode object.
|
GreaterEqNode(String attribute,
Value<T> value)
Creates a new GreaterOrEqual object.
|
LessEqNode(String attribute,
Value<T> value)
Creates a new LessEqNode object.
|
SimpleNode(String attribute,
Value<T> value,
AssertionType assertionType)
Creates a new SimpleNode object.
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
CompareRequestImpl.getAssertionValue()
Gets the attribute value to use in making the comparison.
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
InternalCompareRequest.getAssertionValue()
Gets the attribute value to use in making the comparison.
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
AVA.getNormValue()
Get the Value of a AVA
|
Value<?> |
AVA.getUpValue()
Get the User Provided Value of a AVA
|
Modifier and Type | Method and Description |
---|---|
void |
AVA.setValue(Value<?> upValue,
Value<?> normValue)
Store the value of a AVA.
|
void |
AVA.setValue(Value<?> upValue,
Value<?> normValue)
Store the value of a AVA.
|
Constructor and Description |
---|
AVA(String upType,
String normType,
Value<?> upValue,
Value<?> normValue)
Construct an AVA.
|
AVA(String upType,
String normType,
Value<?> upValue,
Value<?> normValue)
Construct an AVA.
|
AVA(String upType,
String normType,
Value<?> upValue,
Value<?> normValue,
String upName)
Construct an AVA.
|
AVA(String upType,
String normType,
Value<?> upValue,
Value<?> normValue,
String upName)
Construct an AVA.
|
Modifier and Type | Method and Description |
---|---|
abstract Value<?> |
Normalizer.normalize(Value<?> value)
Gets the normalized value.
|
Modifier and Type | Method and Description |
---|---|
abstract Value<?> |
Normalizer.normalize(Value<?> value)
Gets the normalized value.
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
TelephoneNumberNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
UniqueMemberNormalizer.normalize(Value<?> value) |
Value<?> |
DeepTrimToLowerNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
BooleanNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DeepTrimNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
CachingNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DefaultStringNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DnNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
RegexNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NumericNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NameOrNumericIdNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
ObjectIdentifierNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
GeneralizedTimeNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NoOpNormalizer.normalize(Value<?> value)
Returns the value argument as-is without alterations all the time.
|
Modifier and Type | Method and Description |
---|---|
Value<?> |
TelephoneNumberNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
UniqueMemberNormalizer.normalize(Value<?> value) |
Value<?> |
DeepTrimToLowerNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
BooleanNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DeepTrimNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
CachingNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DefaultStringNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
DnNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
RegexNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NumericNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NameOrNumericIdNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
ObjectIdentifierNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
GeneralizedTimeNormalizer.normalize(Value<?> value)
Gets the normalized value.
|
Value<?> |
NoOpNormalizer.normalize(Value<?> value)
Returns the value argument as-is without alterations all the time.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
AttributeUtils.containsValue(Attribute attr,
Value<?> compared,
AttributeType type)
Check if an attribute contains a specific value, using the associated matchingRule for that
|
Copyright © 2003-2012 Apache Software Foundation. All Rights Reserved.