mark impls of EntityTuplizer as @Deprecated
This commit is contained in:
parent
1ebe8523e5
commit
55a556b017
|
@ -31,6 +31,7 @@ import org.hibernate.type.ComponentType;
|
|||
* @author Steve Ebersole
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Deprecated(since = "6.0")
|
||||
public abstract class AbstractEntityTuplizer implements EntityTuplizer {
|
||||
|
||||
private final EntityMetamodel entityMetamodel;
|
||||
|
|
|
@ -29,6 +29,7 @@ import org.hibernate.tuple.DynamicMapInstantiator;
|
|||
* @author Steve Ebersole
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Deprecated(since = "6.0")
|
||||
public class DynamicMapEntityTuplizer extends AbstractEntityTuplizer {
|
||||
private static final CoreMessageLogger LOG = CoreLogging.messageLogger( DynamicMapEntityTuplizer.class );
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ import org.hibernate.metamodel.RepresentationMode;
|
|||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
@Deprecated(since = "6.0")
|
||||
public class EntityTuplizerFactory implements Serializable {
|
||||
public static final Class<?>[] ENTITY_TUP_CTOR_SIG = new Class[] { EntityMetamodel.class, PersistentClass.class };
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ import org.hibernate.type.CompositeType;
|
|||
* @author Steve Ebersole
|
||||
* @author Gavin King
|
||||
*/
|
||||
@Deprecated(since = "6.0")
|
||||
public class PojoEntityTuplizer extends AbstractEntityTuplizer {
|
||||
private static final CoreMessageLogger LOG = CoreLogging.messageLogger( PojoEntityTuplizer.class );
|
||||
|
||||
|
|
Loading…
Reference in New Issue