public final class OdmManagerImplFactoryBean extends Object implements FactoryBean
OdmManagerImpl instances.
Typical configuration would appear as follows:
<bean id="odmManager" class="org.springframework.ldap.odm.core.impl.OdmManagerImplFactoryBean">
<property name="converterManager" ref="converterManager" />
<property name="contextSource" ref="contextSource" />
<property name="managedClasses">
<set>
<value>org.myorg.myldapentries.Person</value>
<value>org.myorg.myldapentries.OrganizationalUnit</value>
</set>
</property>
</bean>
| Constructor and Description |
|---|
OdmManagerImplFactoryBean()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
getObject()
Deprecated.
|
Class<?> |
getObjectType()
Deprecated.
|
boolean |
isSingleton()
Deprecated.
|
void |
setContextSource(ContextSource contextSource)
Deprecated.
Set the ContextSource to use to interact with the LDAP directory.
|
void |
setConverterManager(ConverterManager converterManager)
Deprecated.
Set the ConverterManager to use to convert between LDAP
and Java representations of attributes.
|
void |
setLdapOperations(LdapOperations ldapOperations)
Deprecated.
Set the LdapOperations instance to use to interact with the LDAP directory.
|
void |
setManagedClasses(Set<Class<?>> managedClasses)
Deprecated.
Set the list of
org.springframework.ldap.odm.annotations
annotated classes the OdmManager will process. |
public void setLdapOperations(LdapOperations ldapOperations)
ldapOperations - the LdapOperations instance to use.public void setContextSource(ContextSource contextSource)
contextSource - The ContextSource to use.public void setManagedClasses(Set<Class<?>> managedClasses)
org.springframework.ldap.odm.annotations
annotated classes the OdmManager will process.managedClasses - The list of classes to manage.public void setConverterManager(ConverterManager converterManager)
converterManager - The ConverterManager to use.public Object getObject() throws Exception
getObject in interface FactoryBeanExceptionpublic Class<?> getObjectType()
getObjectType in interface FactoryBeanpublic boolean isSingleton()
isSingleton in interface FactoryBean