mark impls of EntityTuplizer as @Deprecated

This commit is contained in:
Gavin King 2022-01-25 07:46:48 +01:00
parent 1ebe8523e5
commit 55a556b017
4 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,7 @@
* @author Steve Ebersole * @author Steve Ebersole
* @author Gavin King * @author Gavin King
*/ */
@Deprecated(since = "6.0")
public abstract class AbstractEntityTuplizer implements EntityTuplizer { public abstract class AbstractEntityTuplizer implements EntityTuplizer {
private final EntityMetamodel entityMetamodel; private final EntityMetamodel entityMetamodel;

View File

@ -29,6 +29,7 @@
* @author Steve Ebersole * @author Steve Ebersole
* @author Gavin King * @author Gavin King
*/ */
@Deprecated(since = "6.0")
public class DynamicMapEntityTuplizer extends AbstractEntityTuplizer { public class DynamicMapEntityTuplizer extends AbstractEntityTuplizer {
private static final CoreMessageLogger LOG = CoreLogging.messageLogger( DynamicMapEntityTuplizer.class ); private static final CoreMessageLogger LOG = CoreLogging.messageLogger( DynamicMapEntityTuplizer.class );

View File

@ -21,6 +21,7 @@
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */
@Deprecated(since = "6.0")
public class EntityTuplizerFactory implements Serializable { public class EntityTuplizerFactory implements Serializable {
public static final Class<?>[] ENTITY_TUP_CTOR_SIG = new Class[] { EntityMetamodel.class, PersistentClass.class }; public static final Class<?>[] ENTITY_TUP_CTOR_SIG = new Class[] { EntityMetamodel.class, PersistentClass.class };

View File

@ -34,6 +34,7 @@
* @author Steve Ebersole * @author Steve Ebersole
* @author Gavin King * @author Gavin King
*/ */
@Deprecated(since = "6.0")
public class PojoEntityTuplizer extends AbstractEntityTuplizer { public class PojoEntityTuplizer extends AbstractEntityTuplizer {
private static final CoreMessageLogger LOG = CoreLogging.messageLogger( PojoEntityTuplizer.class ); private static final CoreMessageLogger LOG = CoreLogging.messageLogger( PojoEntityTuplizer.class );