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

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

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.annotations;

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

import org.hibernate.tuple.AnnotationValueGeneration;

/**
 * Marks an annotation type as a generator annotation type.
 * 

* Adding a generator annotation to an entity property causes the value of the property to be generated upon insert * or update of the owning entity. Not more than one generator annotation may be placed on a given property. *

* Each generator annotation type is associated with a {@link AnnotationValueGeneration} which implements the strategy * for generating the value. Generator annotation types may define arbitrary custom attributes, e.g. allowing the * client to configure the generation timing (if applicable) or other settings taking an effect on the value generation. * The corresponding implementation can retrieve these settings from the annotation instance passed to * {@link AnnotationValueGeneration#initialize(java.lang.annotation.Annotation, Class)}. *

* Custom generator annotation types must have retention policy {@link RetentionPolicy#RUNTIME}. * @author Gunnar Morling */ @Target( value = ElementType.ANNOTATION_TYPE ) @Retention( RetentionPolicy.RUNTIME ) public @interface ValueGenerationType { /** * The type of value generation associated with the annotated value generator annotation type. The referenced * generation type must be parameterized with the type of the given generator annotation. * * @return the value generation type */ Class> generatedBy(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy