|
|
|
|
|
| Description |
Maintainer : jgoerzen@complete.org
Stability : provisional
Portability: portable
LDAP changes
Written by John Goerzen, jgoerzen@complete.org
|
|
| Synopsis |
|
|
|
|
| Basics
|
|
| data LDAPModOp |
| Constructors | | LdapModAdd | | | LdapModDelete | | | LdapModReplace | | | UnknownLDAPModOp Int | |
| Instances | |
|
|
| data LDAPMod |
| Constructors | | LDAPMod | | | modOp :: LDAPModOp | Type of operation to perform
| | modType :: String | Name of attribute to edit
| | modVals :: [String] | New values
|
|
| Instances | |
|
|
| ldapAdd |
|
|
| ldapModify |
|
|
| ldapDelete :: LDAP -> String -> IO () |
| Delete the specified DN
|
|
| Utilities
|
|
| list2ldm :: LDAPModOp -> [(String, [String])] -> [LDAPMod] |
| Takes a list of name/value points and converts them to LDAPMod
entries. Each item will have the specified LDAPModOp.
|
|
| pairs2ldm :: LDAPModOp -> [(String, String)] -> [LDAPMod] |
| Similar to list2ldm, but handles pairs with only one value.
|
|
| Produced by Haddock version 0.8 |