HHH-7782 - Deprecate PersistentElementHolder, PersistentIndexedElementHolder, PersistentListElementHolder and PersistentMapElementHolder
This commit is contained in:
parent
bcd15dc0eb
commit
ec942edb48
|
@ -45,7 +45,13 @@ import org.hibernate.type.Type;
|
|||
* A persistent wrapper for an XML element
|
||||
*
|
||||
* @author Gavin King
|
||||
*
|
||||
*
|
||||
* @deprecated To be removed in 5. Removed as part of removing the notion of DOM entity-mode. See Jira issues
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7782">HHH-7782</a> and
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7783">HHH-7783</a> for more information.
|
||||
*/
|
||||
@Deprecated
|
||||
public class PersistentElementHolder extends AbstractPersistentCollection {
|
||||
protected Element element;
|
||||
|
||||
|
|
|
@ -49,7 +49,12 @@ import org.hibernate.type.XmlRepresentableType;
|
|||
* A persistent wrapper for an XML element
|
||||
*
|
||||
* @author Gavin King
|
||||
*
|
||||
* @deprecated To be removed in 5. Removed as part of removing the notion of DOM entity-mode. See Jira issues
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7782">HHH-7782</a> and
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7783">HHH-7783</a> for more information.
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class PersistentIndexedElementHolder extends AbstractPersistentCollection {
|
||||
protected Element element;
|
||||
|
||||
|
|
|
@ -36,7 +36,12 @@ import org.hibernate.type.Type;
|
|||
|
||||
/**
|
||||
* @author Gavin King
|
||||
*
|
||||
* @deprecated To be removed in 5. Removed as part of removing the notion of DOM entity-mode. See Jira issues
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7782">HHH-7782</a> and
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7783">HHH-7783</a> for more information.
|
||||
*/
|
||||
@Deprecated
|
||||
public class PersistentListElementHolder extends PersistentIndexedElementHolder {
|
||||
|
||||
public PersistentListElementHolder(SessionImplementor session, Element element) {
|
||||
|
|
|
@ -36,7 +36,12 @@ import org.hibernate.type.XmlRepresentableType;
|
|||
|
||||
/**
|
||||
* @author Gavin King
|
||||
*
|
||||
* @deprecated To be removed in 5. Removed as part of removing the notion of DOM entity-mode. See Jira issues
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7782">HHH-7782</a> and
|
||||
* <a href="https://hibernate.onjira.com/browse/HHH-7783">HHH-7783</a> for more information.
|
||||
*/
|
||||
@Deprecated
|
||||
public class PersistentMapElementHolder extends PersistentIndexedElementHolder {
|
||||
|
||||
public PersistentMapElementHolder(SessionImplementor session, Element element) {
|
||||
|
|
Loading…
Reference in New Issue