Modification class

An LDAP modification operation type.

ADD adds a new value to an attribute. DELETE deletes a value from an attribute or delets the attribute REPLACE replaces an attribute value with a new value INCREMENT increments a numeric attribute value

Constructors

Modification(int _operation, String _attrName, List _values)
Modification.add(String _attrName, List _values)
Modification.delete(String _attrName, List _values)
Modification.increment(String _attrName, List _values)
Modification.replace(String _attrName, List _values)

Properties

attributeName String
no setter
hashCode int
The hash code for this object.
no setterinherited
operation int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values List
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

modList(List modList) List<Modification>
TODO: This is a hack. Create a nicer way of handling this

Constants

ADD → const int
DELETE → const int
INCREMENT → const int
REPLACE → const int