Class LdifParser
- java.lang.Object
-
- org.springframework.ldap.ldif.parser.LdifParser
-
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean,Parser
public class LdifParser extends java.lang.Object implements Parser, org.springframework.beans.factory.InitializingBean
TheLdifParseris the main class of theorg.springframework.ldap.ldifpackage. This class reads lines from a resource and assembles them into anLdapAttributesobject. TheLdifParserdoes ignores changetype LDIF entries as their usefulness in the context of an application has yet to be determined.Design
LdifParserprovides the main interface for operation but requires three supporting classes to enable operation:SeparatorPolicy- establishes the mechanism by which lines are assembled into attributes.AttributeValidationPolicy- ensures that attributes are correctly structured prior to parsing.Specification- provides a mechanism by which object structure can be validated after assembly.
Usage
getRecord()reads the next available record from the resource. Lines are read and passed to theSeparatorPolicyfor interpretation. The parser continues to read lines and appends them to the buffer until it encounters the start of a new attribute or an end of record delimiter. When the new attribute or end of record is encountered, the buffer is passed to theAttributeValidationPolicywhich ensures the buffer conforms to a valid attribute definition as defined in RFC2849 and returns anLdapAttributeobject which is then added to the record, anLdapAttributesobject. Upon encountering the end of record, the record is validated by theSpecificationpolicy and, if valid, returned to the requester.NOTE: By default, objects are not validated. If validation is required, an appropriate specification object must be set.
The parser requires the resource to be
open()prior to an invocation ofgetRecord().hasMoreRecords()can be used to loop over the resource until all records have been retrieved. Likewise, thereset()method will reset the resource.Objects implementing the
Attributesinterface are required to support a case sensitivity setting which controls whether or not the attribute IDs of the object are case sensitive. ThecaseInsensitivesetting of theLdifParseris passed to the constructor of anyAttributescreated. The default value for this setting is true so that case insensitive objects are created.
-
-
Constructor Summary
Constructors Constructor Description LdifParser()Default constructor.LdifParser(boolean caseInsensitive)Creates a LdifParser with the indicated case sensitivity setting.LdifParser(java.io.File file)Convenience constructor: accepts a File object.LdifParser(org.springframework.core.io.Resource resource)Convenience constructor for resource specification.LdifParser(org.springframework.core.io.Resource resource, boolean caseInsensitive)Creates an LdifParser for the specified resource with the provided case sensitivity setting.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()voidclose()Closes the resource after parsing.LdapAttributesgetRecord()Parses the next record from the resource.booleanhasMoreRecords()True if the resource contains more records; false otherwise.booleanisReady()Indicates whether or not the parser is ready to to return results.voidopen()Opens the resource: the resource must be opened prior to parsing.voidreset()Resets the line read parser.voidsetAttributeValidationPolicy(AttributeValidationPolicy avPolicy)Policy object enforcing the rules for acceptable attributes.voidsetCaseInsensitive(boolean caseInsensitive)Sets the control parameter for specifying case sensitivity on creation of theAttributesobject.voidsetRecordSpecification(Specification<LdapAttributes> specification)Policy object for enforcing rules to acceptable LDAP objects.voidsetResource(org.springframework.core.io.Resource resource)Sets the resource to parse.voidsetSeparatorPolicy(SeparatorPolicy separatorPolicy)Set the separator policy.
-
-
-
Constructor Detail
-
LdifParser
public LdifParser()
Default constructor.
-
LdifParser
public LdifParser(boolean caseInsensitive)
Creates a LdifParser with the indicated case sensitivity setting.- Parameters:
caseInsensitive- Case sensitivity setting for LdapAttributes objects returned by the parser.
-
LdifParser
public LdifParser(org.springframework.core.io.Resource resource, boolean caseInsensitive)Creates an LdifParser for the specified resource with the provided case sensitivity setting.- Parameters:
resource- The resource to parse.caseInsensitive- Case sensitivity setting for LdapAttributes objects returned by the parser.
-
LdifParser
public LdifParser(org.springframework.core.io.Resource resource)
Convenience constructor for resource specification.- Parameters:
resource- The resource to parse.
-
LdifParser
public LdifParser(java.io.File file)
Convenience constructor: accepts a File object.- Parameters:
file- The file to parse.
-
-
Method Detail
-
setSeparatorPolicy
public void setSeparatorPolicy(SeparatorPolicy separatorPolicy)
Set the separator policy. The default separator policy should suffice for most needs.- Parameters:
separatorPolicy- Separator policy.
-
setAttributeValidationPolicy
public void setAttributeValidationPolicy(AttributeValidationPolicy avPolicy)
Policy object enforcing the rules for acceptable attributes.- Parameters:
avPolicy- Attribute validation policy.
-
setRecordSpecification
public void setRecordSpecification(Specification<LdapAttributes> specification)
Policy object for enforcing rules to acceptable LDAP objects. This policy may be used to enforce schema restrictions.- Parameters:
specification-
-
setResource
public void setResource(org.springframework.core.io.Resource resource)
Description copied from interface:ParserSets the resource to parse.- Specified by:
setResourcein interfaceParser- Parameters:
resource- The resource to parse.
-
setCaseInsensitive
public void setCaseInsensitive(boolean caseInsensitive)
Description copied from interface:ParserSets the control parameter for specifying case sensitivity on creation of theAttributesobject.- Specified by:
setCaseInsensitivein interfaceParser- Parameters:
caseInsensitive- The resource to parse.
-
open
public void open() throws java.io.IOExceptionDescription copied from interface:ParserOpens the resource: the resource must be opened prior to parsing.
-
isReady
public boolean isReady() throws java.io.IOExceptionDescription copied from interface:ParserIndicates whether or not the parser is ready to to return results.
-
close
public void close() throws java.io.IOExceptionDescription copied from interface:ParserCloses the resource after parsing.
-
reset
public void reset() throws java.io.IOExceptionDescription copied from interface:ParserResets the line read parser.
-
hasMoreRecords
public boolean hasMoreRecords() throws java.io.IOExceptionDescription copied from interface:ParserTrue if the resource contains more records; false otherwise.- Specified by:
hasMoreRecordsin interfaceParser- Returns:
- boolean indicating whether or not the end of record has been reached.
- Throws:
java.io.IOException- if a problem is encountered while trying to validate the resource is ready.
-
getRecord
public LdapAttributes getRecord() throws java.io.IOException
Description copied from interface:ParserParses the next record from the resource.
-
afterPropertiesSet
public void afterPropertiesSet() throws java.lang.Exception- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
java.lang.Exception
-
-