ldif-0.0.8: 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

Constructors

LDIF 

Instances

data LDIFRecord Source

Represents one data record within LDIF file with DN and content | Represents one change record within LDIF file with DN and content

Constructors

ContentRecord 

Fields

reDN :: DN
 
coAttrVals :: [AttrValue]
 
ChangeRecord 

Fields

reDN :: 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]
 
DNi 

Fields

dnAttrVals :: [AttrValue]
 

Instances

data LDIFType Source

Type of LDIF Files (Content, Changes)

Instances