1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
package org.springframework.ldap.odm.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation marks a Java class to be persisted in an LDAP directory.
*
* @author Paul Harvey <paul.at.pauls-place.me.uk>
*
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Entry {
/**
* A list of LDAP object classes that the annotated Java class represents.
* <p>
* All fields will be persisted to LDAP unless annotated {@link Transient}.
*
* @return A list of LDAP classes which the annotated Java class represents.
*/
String[] objectClasses();
}
|