1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
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 field as containing the Distinguished Name of an LDAP Entry.
* <p>
* The marked field must be of type {@link javax.naming.Name} and must <em>not</em>
* be annotated {@link Attribute}.
*
* @author Paul Harvey <paul.at.pauls-place.me.uk>
*
* @see Attribute
* @see javax.naming.Name
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Id {
}
|