Copyright | Copyright (C) 2005 John Goerzen |
---|---|
License | BSD |
Maintainer | John Goerzen, |
Safe Haskell | Safe |
Language | Haskell98 |
LDAP.Search
Description
Maintainer : jgoerzen@complete.org Stability : provisional Portability: portable
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
Eq SearchAttributes Source # | |
Defined in LDAP.Search Methods (==) :: SearchAttributes -> SearchAttributes -> Bool # (/=) :: SearchAttributes -> SearchAttributes -> Bool # | |
Show SearchAttributes Source # | |
Defined in LDAP.Search Methods showsPrec :: Int -> SearchAttributes -> ShowS # show :: SearchAttributes -> String # showList :: [SearchAttributes] -> ShowS # |
Instances
Enum LDAPScope Source # | |
Defined in LDAP.Data Methods succ :: LDAPScope -> LDAPScope # pred :: LDAPScope -> LDAPScope # fromEnum :: LDAPScope -> Int # enumFrom :: LDAPScope -> [LDAPScope] # enumFromThen :: LDAPScope -> LDAPScope -> [LDAPScope] # enumFromTo :: LDAPScope -> LDAPScope -> [LDAPScope] # enumFromThenTo :: LDAPScope -> LDAPScope -> LDAPScope -> [LDAPScope] # | |
Eq LDAPScope Source # | |
Ord LDAPScope Source # | |
Show LDAPScope Source # | |