mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-09 12:44:49 +00:00
HHH-7782 - Deprecate PersistentElementHolder, PersistentIndexedElementHolder, PersistentListElementHolder and PersistentMapElementHolder
(cherry picked from commit ec942edb486b11c88c26d7ddef14dbb96fd49ec5)
This commit is contained in:
parent
778c82b512
commit
83e122773d
@ -45,7 +45,13 @@
|
||||
* 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 @@
|
||||
* 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 @@
|
||||
|
||||
/**
|
||||
* @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 @@
|
||||
|
||||
/**
|
||||
* @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…
x
Reference in New Issue
Block a user