struct
LDAP::Modification
- LDAP::Modification
- Struct
- Value
- Object
Overview
One modification applied to an attribute by LDAP::Client#modify. Build via
the named constructors:
LDAP::Modification.add("objectClass", "person")
LDAP::Modification.replace("mail", "[email protected]")
LDAP::Modification.delete("telephoneNumber") # whole attribute
Defined in:
ldap/modification.crConstructors
- .add(type : String, *values : String) : self
- .delete(type : String) : self
- .delete(type : String, *values : String) : self
- .new(operation : ModifyOperation, type : String, values : Array(String))
- .replace(type : String) : self
- .replace(type : String, *values : String) : self