diff --git a/annotations/src/main/java/org/hibernate/annotations/Entity.java b/annotations/src/main/java/org/hibernate/annotations/Entity.java index a6de495dbf..a64f805de6 100644 --- a/annotations/src/main/java/org/hibernate/annotations/Entity.java +++ b/annotations/src/main/java/org/hibernate/annotations/Entity.java @@ -36,7 +36,11 @@ import java.lang.annotation.Target; @Target(TYPE) @Retention(RUNTIME) public @interface Entity { - /** Is this entity mutable (read only) or not */ + /** + * Is this entity mutable (read only) or not + * + * @deprecated use {@link org.hibernate.annotations.Immutable} + */ boolean mutable() default true; /** Needed column only in SQL on insert */ boolean dynamicInsert() default false;