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

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

There is a newer version: 6.6.2.Final
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.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Specifies the persistence operations that should cascade
 * to associated entity instances.
 * 

* This annotation competes with the {@code cascade} member * of JPA association mapping annotations, for example, with * {@link jakarta.persistence.OneToMany#cascade()}. The only * good reason to use it over the standard JPA approach is * to enable {@linkplain CascadeType#LOCK lock cascading}, * by writing, for example, {@code @Cascade(LOCK)}. *

* If an association specified cascade types using both the * JPA association mapping annotations and this annotation, * then the cascade types from the two sources are aggregated. * * @author Emmanuel Bernard * @author Steve Ebersole */ @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Cascade { /** * The operations that should be cascaded. */ CascadeType[] value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy