Package org.ldaptive.ad
Class UnicodePwdAttribute
java.lang.Object
org.ldaptive.LdapAttribute
org.ldaptive.ad.UnicodePwdAttribute
Helper class for the active directory unicodePwd attribute. Configures a binary attribute of that name and allows
setting of the attribute value using a string. See
UnicodePwdValueTranscoder
.-
Nested Class Summary
Nested classes/interfaces inherited from class org.ldaptive.LdapAttribute
LdapAttribute.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final String
name of this attribute.private static final UnicodePwdValueTranscoder
transcoder used when adding string values. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.UnicodePwdAttribute
(String... values) Creates a new unicode pwd attribute. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addStringValues
(String... value) Adds the supplied string as a value for this attribute.Returns the values of this attribute as strings.Methods inherited from class org.ldaptive.LdapAttribute
addBinaryValues, addBinaryValues, addBufferValues, addBufferValues, addStringValues, addValues, addValues, builder, clear, configureBinary, equals, escapeValue, getBinaryValue, getBinaryValues, getName, getName, getOptions, getStringValue, getValue, getValues, hashCode, isBinary, removeBinaryValues, removeBinaryValues, removeBufferValues, removeBufferValues, removeStringValues, removeStringValues, setBinary, setName, size, sort, toString
-
Field Details
-
ATTR_NAME
name of this attribute.- See Also:
-
TRANSCODER
transcoder used when adding string values.
-
-
Constructor Details
-
UnicodePwdAttribute
public UnicodePwdAttribute()Default constructor. -
UnicodePwdAttribute
Creates a new unicode pwd attribute.- Parameters:
values
- of this attribute
-
-
Method Details
-
getStringValues
Description copied from class:LdapAttribute
Returns the values of this attribute as strings. Binary data is base64 encoded. The return collection cannot be modified.- Overrides:
getStringValues
in classLdapAttribute
- Returns:
- collection of string attribute values
-
addStringValues
Description copied from class:LdapAttribute
Adds the supplied string as a value for this attribute.- Overrides:
addStringValues
in classLdapAttribute
- Parameters:
value
- to add, null values are discarded
-