HHH-6202 Deleting deprecated annotations. Core 4 seems to be a good point to get rid of them.
This commit is contained in:
parent
3bef552483
commit
ac0cf3afd8
|
@ -34,7 +34,6 @@ import org.hibernate.annotations.Cache;
|
|||
import org.hibernate.annotations.Cascade;
|
||||
import org.hibernate.annotations.Check;
|
||||
import org.hibernate.annotations.CollectionId;
|
||||
import org.hibernate.annotations.CollectionOfElements;
|
||||
import org.hibernate.annotations.ColumnTransformer;
|
||||
import org.hibernate.annotations.ColumnTransformers;
|
||||
import org.hibernate.annotations.Columns;
|
||||
|
@ -50,7 +49,6 @@ import org.hibernate.annotations.FilterDefs;
|
|||
import org.hibernate.annotations.FilterJoinTable;
|
||||
import org.hibernate.annotations.FilterJoinTables;
|
||||
import org.hibernate.annotations.Filters;
|
||||
import org.hibernate.annotations.ForceDiscriminator;
|
||||
import org.hibernate.annotations.ForeignKey;
|
||||
import org.hibernate.annotations.Formula;
|
||||
import org.hibernate.annotations.Generated;
|
||||
|
@ -66,8 +64,6 @@ import org.hibernate.annotations.LazyCollection;
|
|||
import org.hibernate.annotations.LazyToOne;
|
||||
import org.hibernate.annotations.Loader;
|
||||
import org.hibernate.annotations.ManyToAny;
|
||||
import org.hibernate.annotations.MapKey;
|
||||
import org.hibernate.annotations.MapKeyManyToMany;
|
||||
import org.hibernate.annotations.MapKeyType;
|
||||
import org.hibernate.annotations.MetaValue;
|
||||
import org.hibernate.annotations.NamedNativeQueries;
|
||||
|
@ -119,7 +115,6 @@ public interface HibernateDotNames {
|
|||
public static final DotName CASCADE = DotName.createSimple( Cascade.class.getName() );
|
||||
public static final DotName CHECK = DotName.createSimple( Check.class.getName() );
|
||||
public static final DotName COLLECTION_ID = DotName.createSimple( CollectionId.class.getName() );
|
||||
public static final DotName COLLECTION_OF_ELEMENTS = DotName.createSimple( CollectionOfElements.class.getName() );
|
||||
public static final DotName COLUMNS = DotName.createSimple( Columns.class.getName() );
|
||||
public static final DotName COLUMN_TRANSFORMER = DotName.createSimple( ColumnTransformer.class.getName() );
|
||||
public static final DotName COLUMN_TRANSFORMERS = DotName.createSimple( ColumnTransformers.class.getName() );
|
||||
|
@ -135,7 +130,6 @@ public interface HibernateDotNames {
|
|||
public static final DotName FILTER_JOIN_TABLE = DotName.createSimple( FilterJoinTable.class.getName() );
|
||||
public static final DotName FILTER_JOIN_TABLES = DotName.createSimple( FilterJoinTables.class.getName() );
|
||||
public static final DotName FILTERS = DotName.createSimple( Filters.class.getName() );
|
||||
public static final DotName FORCE_DISCRIMINATOR = DotName.createSimple( ForceDiscriminator.class.getName() );
|
||||
public static final DotName FOREIGN_KEY = DotName.createSimple( ForeignKey.class.getName() );
|
||||
public static final DotName FORMULA = DotName.createSimple( Formula.class.getName() );
|
||||
public static final DotName GENERATED = DotName.createSimple( Generated.class.getName() );
|
||||
|
@ -151,8 +145,6 @@ public interface HibernateDotNames {
|
|||
public static final DotName LAZY_TO_ONE = DotName.createSimple( LazyToOne.class.getName() );
|
||||
public static final DotName LOADER = DotName.createSimple( Loader.class.getName() );
|
||||
public static final DotName MANY_TO_ANY = DotName.createSimple( ManyToAny.class.getName() );
|
||||
public static final DotName MAP_KEY = DotName.createSimple( MapKey.class.getName() );
|
||||
public static final DotName MAP_KEY_MANY_TO_MANY = DotName.createSimple( MapKeyManyToMany.class.getName() );
|
||||
public static final DotName MAP_KEY_TYPE = DotName.createSimple( MapKeyType.class.getName() );
|
||||
public static final DotName META_VALUE = DotName.createSimple( MetaValue.class.getName() );
|
||||
public static final DotName NAMED_NATIVE_QUERIES = DotName.createSimple( NamedNativeQueries.class.getName() );
|
||||
|
|
Loading…
Reference in New Issue