Class PropertyGeneration

java.lang.Object
org.hibernate.mapping.PropertyGeneration
All Implemented Interfaces:
Serializable

@Deprecated @Remove public class PropertyGeneration extends Object implements Serializable
Deprecated.
This is replaced by ValueGeneration and GenerationTiming, and is no longer used
Indicates whether given properties are generated by the database and, if so, at what time(s) they are generated.
See Also:
  • Field Details

    • NEVER

      public static final PropertyGeneration NEVER
      Deprecated.
      Values for this property are never generated by the database.
    • INSERT

      public static final PropertyGeneration INSERT
      Deprecated.
      Values for this property are generated by the database on insert.
    • ALWAYS

      public static final PropertyGeneration ALWAYS
      Deprecated.
      Values for this property are generated by the database on both insert and update.
  • Method Details