Spring LDAP

org.springframework.ldap.odm.core.impl
Class OdmManagerImpl

java.lang.Object
  extended by org.springframework.ldap.odm.core.impl.OdmManagerImpl
All Implemented Interfaces:
OdmManager

public final class OdmManagerImpl
extends Object
implements OdmManager

An implementation of OdmManager which uses ConverterManager to convert between Java and LDAP representations of attribute values.

Author:
Paul Harvey <paul.at.pauls-place.me.uk>

Constructor Summary
OdmManagerImpl(ConverterManager converterManager, ContextSource contextSource)
           
OdmManagerImpl(ConverterManager converterManager, ContextSource contextSource, Set<Class<?>> managedClasses)
           
OdmManagerImpl(ConverterManager converterManager, LdapOperations ldapOperations, Set<Class<?>> managedClasses)
           
 
Method Summary
 void addManagedClass(Class<?> managedClass)
          Adds an org.springframework.ldap.odm.annotations annotated class to the set managed by this OdmManager.
 void create(Object entry)
          Create the given entry in the LDAP directory.
 void delete(Object entry)
          Delete an entry from the LDAP directory.
<T> List<T>
findAll(Class<T> managedClass, Name base, SearchControls scope)
          Find all entries in the LDAP directory of a given type.
<T> T
read(Class<T> clazz, Name dn)
          Read a named entry from the LDAP directory.
<T> List<T>
search(Class<T> managedClass, Name base, String filter, SearchControls scope)
          Search for entries in the LDAP directory.
 void update(Object entry)
          Update the given entry in the LDAP directory.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OdmManagerImpl

public OdmManagerImpl(ConverterManager converterManager,
                      LdapOperations ldapOperations,
                      Set<Class<?>> managedClasses)

OdmManagerImpl

public OdmManagerImpl(ConverterManager converterManager,
                      ContextSource contextSource,
                      Set<Class<?>> managedClasses)

OdmManagerImpl

public OdmManagerImpl(ConverterManager converterManager,
                      ContextSource contextSource)
Method Detail

addManagedClass

public void addManagedClass(Class<?> managedClass)
Adds an org.springframework.ldap.odm.annotations annotated class to the set managed by this OdmManager.

Parameters:
managedClass - The class to add to the managed set.

read

public <T> T read(Class<T> clazz,
                  Name dn)
Description copied from interface: OdmManager
Read a named entry from the LDAP directory.

Specified by:
read in interface OdmManager
Type Parameters:
T - The Java type to return
Parameters:
clazz - The Java type to return
dn - The distinguished name of the entry to read from the LDAP directory.
Returns:
The entry as read from the directory

create

public void create(Object entry)
Description copied from interface: OdmManager
Create the given entry in the LDAP directory.

Specified by:
create in interface OdmManager
Parameters:
entry - The entry to be create, it must not already exist in the directory.

update

public void update(Object entry)
Description copied from interface: OdmManager
Update the given entry in the LDAP directory.

Specified by:
update in interface OdmManager
Parameters:
entry - The entry to update, it must already exist in the directory.

delete

public void delete(Object entry)
Description copied from interface: OdmManager
Delete an entry from the LDAP directory.

Specified by:
delete in interface OdmManager
Parameters:
entry - The entry to delete, it must already exist in the directory.

search

public <T> List<T> search(Class<T> managedClass,
                          Name base,
                          String filter,
                          SearchControls scope)
Description copied from interface: OdmManager
Search for entries in the LDAP directory.

Only those entries that both match the given search filter and are represented by the given Java class are returned

Specified by:
search in interface OdmManager
Type Parameters:
T - The Java type to return
Parameters:
managedClass - The Java type to return
base - The root of the sub-tree at which to begin the search.
filter - An LDAP search filter.
scope - The scope of the search.
Returns:
All matching entries.
See Also:
Sun's JNDI tutorial description of search filters., LDAP: String Representation of Search Filters RFC.

findAll

public <T> List<T> findAll(Class<T> managedClass,
                           Name base,
                           SearchControls scope)
Description copied from interface: OdmManager
Find all entries in the LDAP directory of a given type.

Specified by:
findAll in interface OdmManager
Type Parameters:
T - The Java type to return
Parameters:
managedClass - The Java type to return
base - The root of the sub-tree at which to begin the search.
scope - The scope of the search.
Returns:
All entries that are of the type represented by the given Java class

Spring LDAP