com.jpattern.orm.annotation.Ignore Maven / Gradle / Ivy
package com.jpattern.orm.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* Identify a field that has to be ignored by the orm
*
* @author Francesco Cina'
*
* Mar 31, 2012
*/
@Target(value=ElementType.FIELD)
@Retention(value=RetentionPolicy.RUNTIME)
@Inherited
public @interface Ignore {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy