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

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

There is a newer version: 3.5.6-Final
Show newest version
//$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 { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy