All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.ldap.odm.annotations.Attribute Maven / Gradle / Ivy

There is a newer version: 3.2.4
Show newest version
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 describes the mapping of a Java field to an LDAP attribute.
 * 

* The containing class must be annotated with {@link Entry}. * * @author Paul Harvey <paul.at.pauls-place.me.uk> * @see Entry */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Attribute { /** * The Type attribute indicates whether a field is regarded as binary based * or string based by the LDAP JNDI provider. */ enum Type { /** * A string field - returned by the JNDI LDAP provider as a {@link java.lang.String}. */ STRING, /** * A binary field - returned by the JNDI LDAP provider as a byte[]. */ BINARY } /** * The LDAP attribute name that this field represents. *

* Defaults to "" in which case the Java field name is used as the LDAP attribute name. * * @return The LDAP attribute name. * */ String name() default ""; /** * Indicates whether this field is returned by the LDAP JNDI provider as a * String (Type.STRING) or as a * byte[] (Type.BINARY). * * @return Either Type.STRING to indicate a string attribute * or Type.BINARY to indicate a binary attribute. */ Type type() default Type.STRING; /** * The LDAP syntax of the attribute that this field represents. *

* This optional value is typically used to affect the precision of conversion * of values between LDAP and Java, * see {@link org.springframework.ldap.odm.typeconversion.ConverterManager} * and {@link org.springframework.ldap.odm.typeconversion.impl.ConverterManagerImpl}. * * @return The LDAP syntax of this attribute. */ String syntax() default ""; /** * A boolean parameter to indicate if the attribute should be read only. *

* This value allows attributes to be read on read, but not persisted, there * are many operational and read-only ldap attributes which will throw errors * if they are persisted back to ldap. * * @return {@code true} is the attribute should not be written to ldap. */ boolean readonly() default false; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy