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

org.springframework.ldap.odm.annotations.Transient 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 identifies a field in an {@link Entry} annotated class that 
 * should not be persisted to LDAP.
 * 
 * @author Paul Harvey <[email protected]>
 * 
 * @see Entry
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Transient {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy