Uses of Interface
org.forgerock.opendj.ldap.Attribute
Packages that use Attribute
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
Classes and interfaces for core LDAP requests.
Classes and interfaces for core LDAP responses.
-
Uses of Attribute in org.forgerock.opendj.ldap
Classes in org.forgerock.opendj.ldap that implement AttributeModifier and TypeClassDescriptionclassThis class provides a skeletal implementation of theAttributeinterface, to minimize the effort required to implement this interface.final classAn implementation of theAttributeinterface with predictable iteration order.Methods in org.forgerock.opendj.ldap that return AttributeModifier and TypeMethodDescriptionstatic AttributeAttributes.emptyAttribute(String attributeDescription) Returns a read-only empty attribute having the specified attribute description.static AttributeAttributes.emptyAttribute(AttributeDescription attributeDescription) Returns a read-only empty attribute having the specified attribute description.AbstractEntry.getAttribute(String attributeDescription) AbstractEntry.getAttribute(AttributeDescription attributeDescription) Entry.getAttribute(String attributeDescription) Returns the named attribute contained in this entry, ornullif it is not included with this entry.Entry.getAttribute(AttributeDescription attributeDescription) Returns the named attribute contained in this entry, ornullif it is not included with this entry.Modification.getAttribute()Returns the attribute containing the values to be modified.AttributeFactory.newAttribute(AttributeDescription attributeDescription) Creates an attribute using the provided attribute description and no values.static AttributeAttributes.renameAttribute(Attribute attribute, String attributeDescription) Returns a view ofattributehaving a different attribute description.static AttributeAttributes.renameAttribute(Attribute attribute, AttributeDescription attributeDescription) Returns a view ofattributehaving a different attribute description.static AttributeAttributes.singletonAttribute(String attributeDescription, Object value) Returns a read-only single-valued attribute having the specified attribute description.static AttributeAttributes.singletonAttribute(AttributeDescription attributeDescription, Object value) Returns a read-only single-valued attribute having the specified attribute description and value.AVA.toAttribute()Returns a single valued attribute having the same attribute type and value as this AVA.static AttributeAttributes.unmodifiableAttribute(Attribute attribute) Returns a read-only view ofattribute.Methods in org.forgerock.opendj.ldap that return types with arguments of type AttributeModifier and TypeMethodDescriptionAbstractEntry.getAllAttributes(String attributeDescription) AbstractEntry.getAllAttributes(AttributeDescription attributeDescription) Entry.getAllAttributes()Returns anIterablecontaining all of the attributes in this entry.Entry.getAllAttributes(String attributeDescription) Returns anIterablecontaining all the attributes in this entry having an attribute description which is a sub-type of the provided attribute description.Entry.getAllAttributes(AttributeDescription attributeDescription) Returns anIterablecontaining all the attributes in this entry having an attribute description which is a sub-type of the provided attribute description.Methods in org.forgerock.opendj.ldap with parameters of type AttributeModifier and TypeMethodDescriptionbooleanAbstractEntry.addAttribute(Attribute attribute) booleanEntry.addAttribute(Attribute attribute) Ensures that this entry contains the provided attribute and values (optional operation).booleanEntry.addAttribute(Attribute attribute, Collection<? super ByteString> duplicateValues) Ensures that this entry contains the provided attribute and values (optional operation).booleanAbstractEntry.containsAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanEntry.containsAttribute(Attribute attribute, Collection<? super ByteString> missingValues) Returnstrueif this entry contains all of the attribute values contained inattribute.static AttributeParserAttributeParser.parseAttribute(Attribute attribute) Returns an attribute parser for the provided attribute.booleanAbstractEntry.removeAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanEntry.removeAttribute(Attribute attribute, Collection<? super ByteString> missingValues) Removes all of the attribute values contained inattributefrom this entry if it is present (optional operation).static AttributeAttributes.renameAttribute(Attribute attribute, String attributeDescription) Returns a view ofattributehaving a different attribute description.static AttributeAttributes.renameAttribute(Attribute attribute, AttributeDescription attributeDescription) Returns a view ofattributehaving a different attribute description.booleanAbstractEntry.replaceAttribute(Attribute attribute) booleanEntry.replaceAttribute(Attribute attribute) Adds all of the attribute values contained inattributeto this entry, replacing any existing attribute values (optional operation).static AttributeAttributes.unmodifiableAttribute(Attribute attribute) Returns a read-only view ofattribute.Constructors in org.forgerock.opendj.ldap with parameters of type AttributeModifierConstructorDescriptionLinkedAttribute(Attribute attribute) Creates a new attribute having the same attribute description and attribute values asattribute.Modification(ModificationType modificationType, Attribute attribute) Creates a new modification having the provided modification type and attribute values to be updated. -
Uses of Attribute in org.forgerock.opendj.ldap.requests
Methods in org.forgerock.opendj.ldap.requests that return AttributeModifier and TypeMethodDescriptionAddRequest.getAttribute(String attributeDescription) AddRequest.getAttribute(AttributeDescription attributeDescription) Methods in org.forgerock.opendj.ldap.requests that return types with arguments of type AttributeModifier and TypeMethodDescriptionAddRequest.getAllAttributes()AddRequest.getAllAttributes(String attributeDescription) AddRequest.getAllAttributes(AttributeDescription attributeDescription) Methods in org.forgerock.opendj.ldap.requests with parameters of type AttributeModifier and TypeMethodDescriptionbooleanAddRequest.addAttribute(Attribute attribute) booleanAddRequest.addAttribute(Attribute attribute, Collection<? super ByteString> duplicateValues) booleanAddRequest.containsAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanAddRequest.removeAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanAddRequest.replaceAttribute(Attribute attribute) -
Uses of Attribute in org.forgerock.opendj.ldap.responses
Methods in org.forgerock.opendj.ldap.responses that return AttributeModifier and TypeMethodDescriptionSearchResultEntry.getAttribute(String attributeDescription) SearchResultEntry.getAttribute(AttributeDescription attributeDescription) Methods in org.forgerock.opendj.ldap.responses that return types with arguments of type AttributeModifier and TypeMethodDescriptionSearchResultEntry.getAllAttributes()SearchResultEntry.getAllAttributes(String attributeDescription) SearchResultEntry.getAllAttributes(AttributeDescription attributeDescription) Methods in org.forgerock.opendj.ldap.responses with parameters of type AttributeModifier and TypeMethodDescriptionbooleanSearchResultEntry.addAttribute(Attribute attribute) booleanSearchResultEntry.addAttribute(Attribute attribute, Collection<? super ByteString> duplicateValues) booleanSearchResultEntry.containsAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanSearchResultEntry.removeAttribute(Attribute attribute, Collection<? super ByteString> missingValues) booleanSearchResultEntry.replaceAttribute(Attribute attribute)