HHH-7782 - Deprecate PersistentElementHolder, PersistentIndexedElementHolder, PersistentListElementHolder and PersistentMapElementHolder

(cherry picked from commit ec942edb486b11c88c26d7ddef14dbb96fd49ec5)
This commit is contained in:
Steve Ebersole 2012-11-12 09:30:47 -06:00
parent 778c82b512
commit 83e122773d
4 changed files with 21 additions and 0 deletions

View File

@ -45,7 +45,13 @@
* A persistent wrapper for an XML element * A persistent wrapper for an XML element
* *
* @author Gavin King * @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 { public class PersistentElementHolder extends AbstractPersistentCollection {
protected Element element; protected Element element;

View File

@ -49,7 +49,12 @@
* A persistent wrapper for an XML element * A persistent wrapper for an XML element
* *
* @author Gavin King * @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 { public abstract class PersistentIndexedElementHolder extends AbstractPersistentCollection {
protected Element element; protected Element element;

View File

@ -36,7 +36,12 @@
/** /**
* @author Gavin King * @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 class PersistentListElementHolder extends PersistentIndexedElementHolder {
public PersistentListElementHolder(SessionImplementor session, Element element) { public PersistentListElementHolder(SessionImplementor session, Element element) {

View File

@ -36,7 +36,12 @@
/** /**
* @author Gavin King * @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 class PersistentMapElementHolder extends PersistentIndexedElementHolder {
public PersistentMapElementHolder(SessionImplementor session, Element element) { public PersistentMapElementHolder(SessionImplementor session, Element element) {