LDAPAttribute Type
An attribute for the current entry.
Remarks
This type describes an attribute for the current LDAP entry. The ModOp field is only used in Modify operations.
Fields
AttributeType String |
Attribute type for the current entry. If the value of AttributeType is an empty string, then Value that contains the corresponding value is part of a set of values, and the attribute type for the set is specified in the previous attribute of the collection with a non-empty AttributeType. | ||||||
ModOp int |
An operation to apply on attributes during an LDAP modify operation. Possible values include:
| ||||||
Value String |
Attribute value for the current entry. If the value is part of a set of values, the AttributeType that contains the corresponding attribute type is an empty string, and the attribute type for the set is specified in the previous attribute of the collection with a non-empty AttributeType. | ||||||
ValueB byte [] |
Attribute value for the current entry. If the value is part of a set of values, the AttributeType that contains the corresponding attribute type is an empty string, and the attribute type for the set is specified in the previous attribute of the collection with a non-empty AttributeType. |
Constructors
public LDAPAttribute();
public LDAPAttribute(String attributeType);
public LDAPAttribute(String attributeType, String value);
public LDAPAttribute(String attributeType, String value, int LDAPAttributeModOp);