Uses of Class
org.ldaptive.LdapAttribute
-
Packages that use LdapAttribute Package Description org.ldaptive org.ldaptive.ad org.ldaptive.beans org.ldaptive.handler org.ldaptive.io org.ldaptive.jaas org.ldaptive.transport -
-
Uses of LdapAttribute in org.ldaptive
Fields in org.ldaptive declared as LdapAttribute Modifier and Type Field Description private LdapAttribute
AttributeModification. attribute
Attribute to modify.private LdapAttribute[]
AddRequest. attributes
Attributes to add to the entry.private LdapAttribute
LdapAttribute.Builder. object
Fields in org.ldaptive with type parameters of type LdapAttribute Modifier and Type Field Description private Map<String,LdapAttribute>
LdapEntry. attributes
LDAP attributes on the entry.Methods in org.ldaptive that return LdapAttribute Modifier and Type Method Description LdapAttribute
LdapAttribute.Builder. build()
static LdapAttribute
LdapAttribute. copy(LdapAttribute attr)
Creates a mutable copy of the supplied attribute.LdapAttribute
AttributeModification. getAttribute()
LdapAttribute
LdapEntry. getAttribute()
Returns a single attribute of this entry.LdapAttribute
LdapEntry. getAttribute(String name)
Returns the attribute with the supplied name.LdapAttribute[]
AddRequest. getAttributes()
Returns the attributes.static LdapAttribute
LdapAttribute. sort(LdapAttribute attr)
Returns a new attribute whose values are sorted.Methods in org.ldaptive that return types with arguments of type LdapAttribute Modifier and Type Method Description Collection<LdapAttribute>
LdapEntry. getAttributes()
Returns the ldap attributes in this entry.Methods in org.ldaptive with parameters of type LdapAttribute Modifier and Type Method Description void
LdapEntry. addAttributes(LdapAttribute... attrs)
Adds attributes to the entry.AddRequest.Builder
AddRequest.Builder. attributes(LdapAttribute... attrs)
Sets the attributes.LdapEntry.Builder
LdapEntry.Builder. attributes(LdapAttribute... attrs)
static LdapAttribute
LdapAttribute. copy(LdapAttribute attr)
Creates a mutable copy of the supplied attribute.void
LdapAttribute. merge(LdapAttribute attr)
Merges the values in the supplied attribute with this attribute.void
LdapEntry. mergeAttributes(LdapAttribute... attrs)
Merges attributes into this entry.void
LdapEntry. removeAttributes(LdapAttribute... attrs)
Removes an attribute from this ldap attributes.static LdapAttribute
LdapAttribute. sort(LdapAttribute attr)
Returns a new attribute whose values are sorted.Method parameters in org.ldaptive with type arguments of type LdapAttribute Modifier and Type Method Description void
LdapEntry. addAttributes(Collection<LdapAttribute> attrs)
Adds attributes to the entry.AddRequest.Builder
AddRequest.Builder. attributes(Collection<LdapAttribute> attrs)
Sets the attributes.LdapEntry.Builder
LdapEntry.Builder. attributes(Collection<LdapAttribute> attrs)
<T> T
LdapEntry. mapAttribute(String name, Function<LdapAttribute,T> func)
Returns a mapped value from an attribute using the supplied function or null if the attribute doesn't exist.<T> T
LdapEntry. mapAttribute(String name, Function<LdapAttribute,T> func, T defaultValue)
Returns a mapped value from an attribute using the supplied function or defaultValue if the attribute doesn't exist.void
LdapEntry. mergeAttributes(Collection<LdapAttribute> attrs)
Merges attributes into this entry.boolean
LdapEntry. processAttribute(String name, Consumer<LdapAttribute> func)
Processes an attribute using the supplied consumer.void
LdapEntry. removeAttributes(Collection<LdapAttribute> attrs)
Removes the attribute(s) from this ldap attributes.Constructors in org.ldaptive with parameters of type LdapAttribute Constructor Description AddRequest(String dn, LdapAttribute... attrs)
Creates a new add request.AttributeModification(AttributeModification.Type type, LdapAttribute attr)
Creates a new modification.Constructor parameters in org.ldaptive with type arguments of type LdapAttribute Constructor Description AddRequest(String dn, Collection<LdapAttribute> attrs)
Creates a new add request. -
Uses of LdapAttribute in org.ldaptive.ad
Subclasses of LdapAttribute in org.ldaptive.ad Modifier and Type Class Description class
UnicodePwdAttribute
Helper class for the active directory unicodePwd attribute. -
Uses of LdapAttribute in org.ldaptive.beans
Fields in org.ldaptive.beans declared as LdapAttribute Modifier and Type Field Description private LdapAttribute
AbstractClassDescriptor.SimpleAttributeValueMutator. la
Ldap attribute to operate on.Methods in org.ldaptive.beans that return LdapAttribute Modifier and Type Method Description protected LdapAttribute
AbstractLdapEntryMapper. mapValue(T source, AttributeValueMutator mutator)
Creates a new ldap attribute using the supplied mutator and source.Methods in org.ldaptive.beans with parameters of type LdapAttribute Modifier and Type Method Description protected void
AbstractLdapEntryMapper. mapValue(LdapAttribute attr, T dest, AttributeValueMutator mutator)
Sets the supplied attribute values on the destination using the mutator. -
Uses of LdapAttribute in org.ldaptive.handler
Methods in org.ldaptive.handler with parameters of type LdapAttribute Modifier and Type Method Description protected void
AbstractEntryHandler. handleAttribute(LdapAttribute attr)
Handle a single attribute. -
Uses of LdapAttribute in org.ldaptive.io
Methods in org.ldaptive.io that return LdapAttribute Modifier and Type Method Description private LdapAttribute
LdifReader. parseAttribute(String line)
Parses the supplied line and returns an attribute with a single value found in the line. -
Uses of LdapAttribute in org.ldaptive.jaas
Method parameters in org.ldaptive.jaas with type arguments of type LdapAttribute Modifier and Type Method Description static Set<LdapRole>
LdapRole. toRoles(Collection<LdapAttribute> attributes)
Iterates over the supplied attributes and returns all values as a set of ldap roles. -
Uses of LdapAttribute in org.ldaptive.transport
Methods in org.ldaptive.transport with parameters of type LdapAttribute Modifier and Type Method Description protected void
AbstractMessageFunctionalEntryHandler. handleAttribute(LdapAttribute attr)
Handle a single attribute.
-