Spring LDAP

org.springframework.ldap.odm.annotations
Annotation Type Entry


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface Entry

This annotation marks a Java class to be persisted in an LDAP directory.

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

Required Element Summary
 String[] objectClasses
          A list of LDAP object classes that the annotated Java class represents.
 

Element Detail

objectClasses

public abstract String[] objectClasses
A list of LDAP object classes that the annotated Java class represents.

All fields will be persisted to LDAP unless annotated Transient.

Returns:
A list of LDAP classes which the annotated Java class represents.

Spring LDAP