com.jpattern.orm.annotation.Id Maven / Gradle / Ivy
package com.jpattern.orm.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* Define a field which is the identifier of the bean
*
* @author Francesco Cina
*
* 08/giu/2011
*/
@Target(value=ElementType.FIELD)
@Retention(value=RetentionPolicy.RUNTIME)
public @interface Id {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy