Copyright | Copyright (C) 2005 John Goerzen |
---|---|
License | BSD |
Maintainer | John Goerzen, |
Stability | provisional |
Portability | portable |
Safe Haskell | Safe-Inferred |
Language | Haskell98 |
LDAP.Search
Description
LDAP Searching
Written by John Goerzen, jgoerzen@complete.org
Synopsis
- data SearchAttributes
- data LDAPEntry = LDAPEntry {}
- data LDAPScope
- ldapSearch :: LDAP -> Maybe String -> LDAPScope -> Maybe String -> SearchAttributes -> Bool -> IO [LDAPEntry]
Documentation
data SearchAttributes Source #
Defines what attributes to return with the search result.
Constructors
LDAPNoAttrs | No attributes |
LDAPAllUserAttrs | User attributes only |
LDAPAttrList [String] | User-specified list |
Instances
Show SearchAttributes Source # | |
Defined in LDAP.Search | |
Eq SearchAttributes Source # | |
Defined in LDAP.Search Methods (==) :: SearchAttributes -> SearchAttributes -> Bool Source # (/=) :: SearchAttributes -> SearchAttributes -> Bool Source # |
Instances
Enum LDAPScope Source # | |
Defined in LDAP.Data Methods succ :: LDAPScope -> LDAPScope Source # pred :: LDAPScope -> LDAPScope Source # toEnum :: Int -> LDAPScope Source # fromEnum :: LDAPScope -> Int Source # enumFrom :: LDAPScope -> [LDAPScope] Source # enumFromThen :: LDAPScope -> LDAPScope -> [LDAPScope] Source # enumFromTo :: LDAPScope -> LDAPScope -> [LDAPScope] Source # enumFromThenTo :: LDAPScope -> LDAPScope -> LDAPScope -> [LDAPScope] Source # | |
Show LDAPScope Source # | |
Eq LDAPScope Source # | |
Ord LDAPScope Source # | |
Defined in LDAP.Data |