ldif-0.0.3: The LDAP Data Interchange Format (LDIF) parser

Text.LDIF.Types

Description

LDIF related types

Synopsis

Documentation

data LDIF Source

Represents LDIF structure, it can be either simply LDIF data dump or | changes LDIF with LDAP operations

Instances

data ContentRecord Source

Represents one data record within LDIF file with DN and content

Constructors

ContentRecord 

Fields

coDN :: DN
 
coAttrVals :: [AttrValue]
 

data ChangeRecord Source

Represents one change record within LDIF file with DN and content

Constructors

ChangeRecord 

Fields

chDN :: DN
 
chOp :: Change
 

data Change Source

Represents one LDAP operation within changes LDIF

Instances

data Modify Source

Represents ChangeModify operations upon one entry within given DN

Instances

data DN Source

Represents Distinguished Name (DN)

Constructors

DN 

Fields

dnAttrVals :: [AttrValue]
 

Instances