HHH-14857 - Deprecations in preparation for 6
This commit is contained in:
parent
1fdd0a6df1
commit
91e29358be
|
@ -31,8 +31,12 @@ import org.hibernate.property.access.spi.Getter;
|
||||||
* @see org.hibernate.tuple.entity.EntityTuplizer
|
* @see org.hibernate.tuple.entity.EntityTuplizer
|
||||||
* @see org.hibernate.tuple.component.ComponentTuplizer
|
* @see org.hibernate.tuple.component.ComponentTuplizer
|
||||||
*
|
*
|
||||||
|
* @deprecated for removal in 6.0. See instead `ManagedTypeRepresentationStrategy`
|
||||||
|
* and `RepresentationMode` in 6.0
|
||||||
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface Tuplizer {
|
public interface Tuplizer {
|
||||||
/**
|
/**
|
||||||
* Extract the current values contained on the given entity.
|
* Extract the current values contained on the given entity.
|
||||||
|
|
|
@ -20,7 +20,11 @@ import org.hibernate.tuple.Tuplizer;
|
||||||
*
|
*
|
||||||
* @author Gavin King
|
* @author Gavin King
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
|
*
|
||||||
|
* @deprecated for removal in 6.0. See instead `ManagedTypeRepresentationStrategy`
|
||||||
|
* and `RepresentationMode` in 6.0
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface ComponentTuplizer extends Tuplizer, Serializable {
|
public interface ComponentTuplizer extends Tuplizer, Serializable {
|
||||||
/**
|
/**
|
||||||
* Retrieve the current value of the parent property.
|
* Retrieve the current value of the parent property.
|
||||||
|
|
|
@ -28,7 +28,11 @@ import org.hibernate.tuple.Tuplizer;
|
||||||
*
|
*
|
||||||
* @author Gavin King
|
* @author Gavin King
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
|
*
|
||||||
|
* @deprecated for removal in 6.0. See instead `ManagedTypeRepresentationStrategy`
|
||||||
|
* and `RepresentationMode` in 6.0
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface EntityTuplizer extends Tuplizer {
|
public interface EntityTuplizer extends Tuplizer {
|
||||||
/**
|
/**
|
||||||
* Return the entity-mode handled by this tuplizer instance.
|
* Return the entity-mode handled by this tuplizer instance.
|
||||||
|
|
Loading…
Reference in New Issue