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

org.hibernate.annotations.LazyToOne Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: LazyToOne.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.annotations;

import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Define the lazy status of a ToOne association
 * (ie OneToOne or ManyToOne)
 *
 * @author Emmanuel Bernard
 */
@Target({ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface LazyToOne {
	LazyToOneOption value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy