|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of EntryAttribute in org.apache.directory.shared.ldap.codec.search |
---|
Methods in org.apache.directory.shared.ldap.codec.search that return types with arguments of type EntryAttribute | |
---|---|
java.util.List<EntryAttribute> |
SearchRequest.getAttributes()
Get the list of attributes |
Uses of EntryAttribute in org.apache.directory.shared.ldap.entry |
---|
Fields in org.apache.directory.shared.ldap.entry with type parameters of type EntryAttribute | |
---|---|
protected java.util.Map<K,EntryAttribute> |
AbstractEntry.attributes
A map containing all the attributes for this entry |
Methods in org.apache.directory.shared.ldap.entry that return EntryAttribute | |
---|---|
EntryAttribute |
EntryAttribute.clone()
|
EntryAttribute |
Entry.get(java.lang.String alias)
Returns the attribute with the specified alias. |
EntryAttribute |
Modification.getAttribute()
|
EntryAttribute |
Entry.put(java.lang.String upId,
byte[]... values)
Put an attribute (represented by its ID and some binary values) into an entry. |
EntryAttribute |
Entry.put(java.lang.String upId,
java.lang.String... values)
Put an attribute (represented by its ID and some String values) into an entry. |
EntryAttribute |
Entry.put(java.lang.String upId,
Value<?>... values)
Put an attribute (represented by its ID and some values) into an entry. |
Methods in org.apache.directory.shared.ldap.entry that return types with arguments of type EntryAttribute | |
---|---|
java.util.Iterator<EntryAttribute> |
AbstractEntry.iterator()
Returns an enumeration containing the zero or more attributes in the collection. |
java.util.Iterator<EntryAttribute> |
Entry.iterator()
Returns an enumeration containing the zero or more attributes in the collection. |
java.util.List<EntryAttribute> |
Entry.put(EntryAttribute... attributes)
Places attributes in the attribute collection. |
java.util.List<EntryAttribute> |
Entry.remove(EntryAttribute... attributes)
Removes the specified attributes. |
java.util.List<EntryAttribute> |
Entry.removeAttributes(java.lang.String... attributes)
Removes the attribute with the specified alias. |
java.util.List<EntryAttribute> |
Entry.set(java.lang.String... upIds)
Put some new ClientAttribute using the User Provided ID. |
Methods in org.apache.directory.shared.ldap.entry with parameters of type EntryAttribute | |
---|---|
void |
Entry.add(EntryAttribute... attributes)
Add some Attributes to the current Entry. |
boolean |
Entry.contains(EntryAttribute... attributes)
Checks if an entry contains a list of attributes. |
java.util.List<EntryAttribute> |
Entry.put(EntryAttribute... attributes)
Places attributes in the attribute collection. |
java.util.List<EntryAttribute> |
Entry.remove(EntryAttribute... attributes)
Removes the specified attributes. |
void |
Modification.setAttribute(EntryAttribute attribute)
Set the attribute's modification |
Uses of EntryAttribute in org.apache.directory.shared.ldap.entry.client |
---|
Subinterfaces of EntryAttribute in org.apache.directory.shared.ldap.entry.client | |
---|---|
interface |
ClientAttribute
The server specific interface extending the EntryAttribute interface. |
Classes in org.apache.directory.shared.ldap.entry.client that implement EntryAttribute | |
---|---|
class |
DefaultClientAttribute
A client side entry attribute. |
Methods in org.apache.directory.shared.ldap.entry.client that return EntryAttribute | |
---|---|
EntryAttribute |
DefaultClientAttribute.clone()
|
EntryAttribute |
DefaultClientEntry.get(java.lang.String alias)
Returns the attribute with the specified alias. |
EntryAttribute |
ClientModification.getAttribute()
|
EntryAttribute |
DefaultClientEntry.put(java.lang.String upId,
byte[]... values)
Put an attribute (represented by its ID and some binary values) into an entry. |
EntryAttribute |
DefaultClientEntry.put(java.lang.String upId,
java.lang.String... values)
Put an attribute (represented by its ID and some String values) into an entry. |
EntryAttribute |
DefaultClientEntry.put(java.lang.String upId,
Value<?>... values)
Put an attribute (represented by its ID and some values) into an entry. |
Methods in org.apache.directory.shared.ldap.entry.client that return types with arguments of type EntryAttribute | |
---|---|
java.util.Iterator<EntryAttribute> |
DefaultClientEntry.iterator()
|
java.util.List<EntryAttribute> |
DefaultClientEntry.put(EntryAttribute... attributes)
Places attributes in the attribute collection. |
java.util.List<EntryAttribute> |
DefaultClientEntry.remove(EntryAttribute... attributes)
|
java.util.List<EntryAttribute> |
DefaultClientEntry.removeAttributes(java.lang.String... attributes)
Removes the attribute with the specified alias. |
java.util.List<EntryAttribute> |
DefaultClientEntry.set(java.lang.String... upIds)
Put some new ClientAttribute using the User Provided ID. |
Methods in org.apache.directory.shared.ldap.entry.client with parameters of type EntryAttribute | |
---|---|
void |
DefaultClientEntry.add(EntryAttribute... attributes)
Add some Attributes to the current Entry. |
boolean |
DefaultClientEntry.contains(EntryAttribute... attributes)
Checks if an entry contains a list of attributes. |
java.util.List<EntryAttribute> |
DefaultClientEntry.put(EntryAttribute... attributes)
Places attributes in the attribute collection. |
java.util.List<EntryAttribute> |
DefaultClientEntry.remove(EntryAttribute... attributes)
|
void |
ClientModification.setAttribute(EntryAttribute attribute)
Set the attribute's modification |
Constructors in org.apache.directory.shared.ldap.entry.client with parameters of type EntryAttribute | |
---|---|
ClientModification(int operation,
EntryAttribute attribute)
Creates a new instance of ClientModification. |
|
ClientModification(ModificationOperation operation,
EntryAttribute attribute)
Creates a new instance of ClientModification. |
|
DefaultClientEntry(LdapDN dn,
EntryAttribute... attributes)
Creates a new instance of DefaultClientEntry, with a DN and a list of EntryAttributes. |
Uses of EntryAttribute in org.apache.directory.shared.ldap.ldif |
---|
Methods in org.apache.directory.shared.ldap.ldif that return EntryAttribute | |
---|---|
EntryAttribute |
LdifEntry.get(java.lang.String attributeId)
Returns a attribute given it's id |
Methods in org.apache.directory.shared.ldap.ldif with parameters of type EntryAttribute | |
---|---|
void |
LdifEntry.addAttribute(EntryAttribute attr)
Add an attribute to the entry |
void |
LdifEntry.addModificationItem(ModificationOperation modOp,
EntryAttribute attr)
Add a modification item (used by modify operations) |
static java.lang.String |
LdifUtils.convertToLdif(EntryAttribute attr)
Converts an EntryAttribute to LDIF |
static java.lang.String |
LdifUtils.convertToLdif(EntryAttribute attr,
int length)
Converts an EntryAttribute as LDIF |
Uses of EntryAttribute in org.apache.directory.shared.ldap.util |
---|
Methods in org.apache.directory.shared.ldap.util that return EntryAttribute | |
---|---|
static EntryAttribute |
AttributeUtils.toClientAttribute(javax.naming.directory.Attribute attribute)
Convert a BasicAttribute or a AttributeImpl to a EntryAttribute |
Methods in org.apache.directory.shared.ldap.util with parameters of type EntryAttribute | |
---|---|
static javax.naming.directory.Attribute |
AttributeUtils.toAttribute(EntryAttribute entryAttribute)
Converts an EntryAttribute to an Attribute . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |