org.hibernate.annotations.Immutable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: Immutable.java 14801 2008-06-24 19:03:32Z hardy.ferentschik $
package org.hibernate.annotations;
import java.lang.annotation.*;
/**
* Mark an Entity or a Collection as immutable. No annotation means the element is mutable.
*
* An immutable entity may not be updated by the application. Updates to an immutable
* entity will be ignored, but no exception is thrown. @Immutable must be used on root entities only.
*
*
* @Immutable placed on a collection makes the collection immutable, meaning additions and
* deletions to and from the collection are not allowed. A HibernateException is thrown in this case.
*
*
* @author Emmanuel Bernard
*/
@java.lang.annotation.Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Retention( RetentionPolicy.RUNTIME )
public @interface Immutable {
}