Skip navigation links
spring-ldap-ldif-core
A B C D G H I L O P R S T V 

A

addAllOptions(Collection<String>) - Method in class org.springframework.ldap.core.LdapAttribute
Add all values in the collection to the options.
addOption(String) - Method in class org.springframework.ldap.core.LdapAttribute
Add an option.
afterPropertiesSet() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
assess(String) - Method in class org.springframework.ldap.ldif.support.SeparatorPolicy
Assess a read line.
AttributeValidationPolicy - Interface in org.springframework.ldap.ldif.support
Interface defining the required methods for AttributeValidationPolicies.

B

BasicSchemaSpecification - Class in org.springframework.ldap.schema
BasicSchemaSpecification establishes a minimal set of requirements for object classes.
BasicSchemaSpecification() - Constructor for class org.springframework.ldap.schema.BasicSchemaSpecification
 

C

clearOptions() - Method in class org.springframework.ldap.core.LdapAttribute
Clears all stored options.
close() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
close() - Method in interface org.springframework.ldap.ldif.parser.Parser
Closes the resource after parsing.
contains(String) - Method in class org.springframework.ldap.core.LdapAttribute
Checks for existence of a particular option on the set.
containsAll(Collection<String>) - Method in class org.springframework.ldap.core.LdapAttribute
Checks for existence of a series of options on the set.

D

DefaultAttributeValidationPolicy - Class in org.springframework.ldap.ldif.support
Ensures the buffer represents a valid attribute as defined by RFC2849.
DefaultAttributeValidationPolicy() - Constructor for class org.springframework.ldap.ldif.support.DefaultAttributeValidationPolicy
Default constructor.
DefaultAttributeValidationPolicy(boolean) - Constructor for class org.springframework.ldap.ldif.support.DefaultAttributeValidationPolicy
Constructor for indicating whether or not attribute values should be ordered alphabetically.
DefaultSchemaSpecification - Class in org.springframework.ldap.schema
DefaultSchemaSpecification does not validate objects at all - it simply returns true.
DefaultSchemaSpecification() - Constructor for class org.springframework.ldap.schema.DefaultSchemaSpecification
 
dn - Variable in class org.springframework.ldap.core.LdapAttributes
Distinguished name to which the object is bound.

G

getDN() - Method in class org.springframework.ldap.core.LdapAttributes
Deprecated.
and associated classes and methods are deprecated as of 2.0. use LdapAttributes.getName() instead.
getName() - Method in class org.springframework.ldap.core.LdapAttributes
Returns the distinguished name to which the object is bound.
getOptions() - Method in class org.springframework.ldap.core.LdapAttribute
Get options.
getRecord() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
getRecord() - Method in interface org.springframework.ldap.ldif.parser.Parser
Parses the next record from the resource.

H

hasMoreRecords() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
hasMoreRecords() - Method in interface org.springframework.ldap.ldif.parser.Parser
True if the resource contains more records; false otherwise.
hasOptions() - Method in class org.springframework.ldap.core.LdapAttribute
Tests for the presence of options.

I

InvalidAttributeFormatException - Exception in org.springframework.ldap.ldif
Thrown whenever a parsed attribute does not conform to LDAP specifications.
InvalidAttributeFormatException(String) - Constructor for exception org.springframework.ldap.ldif.InvalidAttributeFormatException
 
InvalidAttributeFormatException(Throwable) - Constructor for exception org.springframework.ldap.ldif.InvalidAttributeFormatException
 
InvalidAttributeFormatException(String, Throwable) - Constructor for exception org.springframework.ldap.ldif.InvalidAttributeFormatException
 
InvalidRecordFormatException - Exception in org.springframework.ldap.ldif
Thrown whenever a parsed record does not conform to LDAP specifications.
InvalidRecordFormatException(String) - Constructor for exception org.springframework.ldap.ldif.InvalidRecordFormatException
 
InvalidRecordFormatException(Throwable) - Constructor for exception org.springframework.ldap.ldif.InvalidRecordFormatException
 
InvalidRecordFormatException(String, Throwable) - Constructor for exception org.springframework.ldap.ldif.InvalidRecordFormatException
 
isReady() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
isReady() - Method in interface org.springframework.ldap.ldif.parser.Parser
Indicates whether or not the parser is ready to to return results.
isSatisfiedBy(LdapAttributes) - Method in class org.springframework.ldap.schema.BasicSchemaSpecification
Determines if the policy is satisfied by the supplied LdapAttributes object.
isSatisfiedBy(LdapAttributes) - Method in class org.springframework.ldap.schema.DefaultSchemaSpecification
Determines if the policy is satisfied by the supplied LdapAttributes object.
isSatisfiedBy(T) - Method in interface org.springframework.ldap.schema.Specification
 

L

LdapAttribute - Class in org.springframework.ldap.core
Extends BasicAttribute to add support for options as defined in RFC2849.
LdapAttribute(String) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an unordered attribute with the specified ID.
LdapAttribute(String, Object) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an unordered attribute with the specified ID and value.
LdapAttribute(String, Object, Collection<String>) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an unordered attribute with the specified ID, value, and options.
LdapAttribute(String, boolean) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an attribute with the specified ID whose values may be ordered.
LdapAttribute(String, Collection<String>, boolean) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an attribute with the specified ID and options whose values may be ordered.
LdapAttribute(String, Object, boolean) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an attribute with the specified ID and value whose values may be ordered.
LdapAttribute(String, Object, Collection<String>, boolean) - Constructor for class org.springframework.ldap.core.LdapAttribute
Creates an attribute with the specified ID, value, and options whose values may be ordered.
LdapAttributes - Class in org.springframework.ldap.core
Extends BasicAttributes to add specialized support for DNs.
LdapAttributes() - Constructor for class org.springframework.ldap.core.LdapAttributes
Default constructor.
LdapAttributes(boolean) - Constructor for class org.springframework.ldap.core.LdapAttributes
Constructor for specifying whether or not the object is case sensitive.
LdifParser - Class in org.springframework.ldap.ldif.parser
The LdifParser is the main class of the org.springframework.ldap.ldif package.
LdifParser() - Constructor for class org.springframework.ldap.ldif.parser.LdifParser
Default constructor.
LdifParser(boolean) - Constructor for class org.springframework.ldap.ldif.parser.LdifParser
Creates a LdifParser with the indicated case sensitivity setting.
LdifParser(Resource, boolean) - Constructor for class org.springframework.ldap.ldif.parser.LdifParser
Creates an LdifParser for the specified resource with the provided case sensitivity setting.
LdifParser(Resource) - Constructor for class org.springframework.ldap.ldif.parser.LdifParser
Convenience constructor for resource specification.
LdifParser(File) - Constructor for class org.springframework.ldap.ldif.parser.LdifParser
Convenience constructor: accepts a File object.
LineIdentifier - Enum in org.springframework.ldap.ldif.support
Enumeration declaring possible event types when parsing LDIF files.

O

open() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
open() - Method in interface org.springframework.ldap.ldif.parser.Parser
Opens the resource: the resource must be opened prior to parsing.
options - Variable in class org.springframework.ldap.core.LdapAttribute
Holds the attributes options.
org.springframework.ldap.core - package org.springframework.ldap.core
 
org.springframework.ldap.ldif - package org.springframework.ldap.ldif
The base package for Spring LDAPs LDIF parser implementation.
org.springframework.ldap.ldif.parser - package org.springframework.ldap.ldif.parser
This package contains the parser classes and interfaces.
org.springframework.ldap.ldif.support - package org.springframework.ldap.ldif.support
Provides the necessary auxiliary classes utilized by the LDIFParser.
org.springframework.ldap.schema - package org.springframework.ldap.schema
This package is aimed at providing a mechanism to implement LDAP schemas.

P

parse(String) - Method in interface org.springframework.ldap.ldif.support.AttributeValidationPolicy
Validates attribute contained in the buffer and returns an LdapAttribute.
parse(String) - Method in class org.springframework.ldap.ldif.support.DefaultAttributeValidationPolicy
Validates attribute contained in the buffer and returns an LdapAttribute.
Parser - Interface in org.springframework.ldap.ldif.parser
The Parser interface represents the required methods to be implemented by parser utilities.

R

removeAllOptions(Collection<String>) - Method in class org.springframework.ldap.core.LdapAttribute
Removes all options listed in the supplied set.
removeOption(String) - Method in class org.springframework.ldap.core.LdapAttribute
Removes an option from the the set.
reset() - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
reset() - Method in interface org.springframework.ldap.ldif.parser.Parser
Resets the line read parser.
retainAllOptions(Collection<String>) - Method in class org.springframework.ldap.core.LdapAttribute
Removes any options not on the set of supplied options.

S

SeparatorPolicy - Class in org.springframework.ldap.ldif.support
Policy object for enforcing LDIF record separation rules.
SeparatorPolicy() - Constructor for class org.springframework.ldap.ldif.support.SeparatorPolicy
 
setAttributeValidationPolicy(AttributeValidationPolicy) - Method in class org.springframework.ldap.ldif.parser.LdifParser
Policy object enforcing the rules for acceptable attributes.
setCaseInsensitive(boolean) - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
setCaseInsensitive(boolean) - Method in interface org.springframework.ldap.ldif.parser.Parser
Sets the control parameter for specifying case sensitivity on creation of the Attributes object.
setDN(DistinguishedName) - Method in class org.springframework.ldap.core.LdapAttributes
Deprecated.
and associated classes and methods are deprecated as of 2.0. use LdapAttributes.setName(javax.naming.Name) instead.
setName(Name) - Method in class org.springframework.ldap.core.LdapAttributes
 
setOptions(Set<String>) - Method in class org.springframework.ldap.core.LdapAttribute
Set options.
setOrdered(boolean) - Method in class org.springframework.ldap.ldif.support.DefaultAttributeValidationPolicy
Indicates whether or not the attribute values should be ordered alphabetically.
setRecordSpecification(Specification<LdapAttributes>) - Method in class org.springframework.ldap.ldif.parser.LdifParser
Policy object for enforcing rules to acceptable LDAP objects.
setResource(Resource) - Method in class org.springframework.ldap.ldif.parser.LdifParser
 
setResource(Resource) - Method in interface org.springframework.ldap.ldif.parser.Parser
Sets the resource to parse.
setSeparatorPolicy(SeparatorPolicy) - Method in class org.springframework.ldap.ldif.parser.LdifParser
Set the separator policy.
Specification<T> - Interface in org.springframework.ldap.schema
The specification interface is implemented to declare rules that a record must conform to.

T

toString() - Method in class org.springframework.ldap.core.LdapAttributes
Returns a string representation of the object in LDIF format.

V

valueOf(String) - Static method in enum org.springframework.ldap.ldif.support.LineIdentifier
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.springframework.ldap.ldif.support.LineIdentifier
Returns an array containing the constants of this enum type, in the order they are declared.
A B C D G H I L O P R S T V 
Skip navigation links
spring-ldap-ldif-core