Uses of Interface
edu.vt.middleware.ldap.bean.LdapAttribute
-
Packages that use LdapAttribute Package Description edu.vt.middleware.ldap.bean -
-
Uses of LdapAttribute in edu.vt.middleware.ldap.bean
Classes in edu.vt.middleware.ldap.bean with type parameters of type LdapAttribute Modifier and Type Class Description class
AbstractLdapAttributes<T extends java.util.Map<java.lang.String,LdapAttribute>>
AbstractLdapAttributes
provides a base implementation ofLdapAttributes
where the underlying attributes are backed by aMap
.Classes in edu.vt.middleware.ldap.bean that implement LdapAttribute Modifier and Type Class Description class
AbstractLdapAttribute<T extends java.util.Set<java.lang.Object>>
AbstractLdapAttribute
provides a base implementation ofLdapAttribute
where the underlying values are backed by aSet
.protected class
OrderedLdapBeanFactory.OrderedLdapAttribute
OrderedLdapAttribute
represents a single ldap attribute whose values are ordered by insertion.protected class
SortedLdapBeanFactory.SortedLdapAttribute
SortedLdapAttribute
represents a single ldap attribute whose values are sorted.protected class
UnorderedLdapBeanFactory.UnorderedLdapAttribute
UnorderedLdapAttribute
represents a single ldap attribute whose values are unordered.Methods in edu.vt.middleware.ldap.bean that return LdapAttribute Modifier and Type Method Description LdapAttribute
AbstractLdapAttributes. getAttribute(java.lang.String name)
This returns theLdapAttribute
for thisLdapAttributes
with the supplied name.LdapAttribute
LdapAttributes. getAttribute(java.lang.String name)
This returns theLdapAttribute
for thisLdapAttributes
with the supplied name.LdapAttribute
LdapBeanFactory. newLdapAttribute()
Create a new instance ofLdapAttribute
.LdapAttribute
OrderedLdapBeanFactory. newLdapAttribute()
Create a new instance ofLdapAttribute
.LdapAttribute
SortedLdapBeanFactory. newLdapAttribute()
Create a new instance ofLdapAttribute
.LdapAttribute
UnorderedLdapBeanFactory. newLdapAttribute()
Create a new instance ofLdapAttribute
.Methods in edu.vt.middleware.ldap.bean that return types with arguments of type LdapAttribute Modifier and Type Method Description java.util.Collection<LdapAttribute>
AbstractLdapAttributes. getAttributes()
This returns aCollection
ofLdapAttribute
for thisLdapAttributes
.java.util.Collection<LdapAttribute>
LdapAttributes. getAttributes()
This returns aCollection
ofLdapAttribute
for thisLdapAttributes
.Methods in edu.vt.middleware.ldap.bean with parameters of type LdapAttribute Modifier and Type Method Description void
AbstractLdapAttributes. addAttribute(LdapAttribute a)
This adds a new attribute to thisLdapAttributes
.void
LdapAttributes. addAttribute(LdapAttribute a)
This adds a new attribute to thisLdapAttributes
.void
AbstractLdapAttributes. removeAttribute(LdapAttribute a)
This removes an attribute from thisLdapAttributes
.void
LdapAttributes. removeAttribute(LdapAttribute a)
This removes an attribute from thisLdapAttributes
.Method parameters in edu.vt.middleware.ldap.bean with type arguments of type LdapAttribute Modifier and Type Method Description void
AbstractLdapAttributes. addAttributes(java.util.Collection<LdapAttribute> c)
This adds aCollection
of attributes to thisLdapAttributes
.void
LdapAttributes. addAttributes(java.util.Collection<LdapAttribute> c)
This adds aCollection
of attributes to thisLdapAttributes
.void
AbstractLdapAttributes. removeAttributes(java.util.Collection<LdapAttribute> c)
This removes aCollection
of attributes from thisLdapAttributes
.void
LdapAttributes. removeAttributes(java.util.Collection<LdapAttribute> c)
This removes aCollection
of attributes from thisLdapAttributes
.
-