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

This commit is contained in:
Steve Ebersole 2012-11-12 09:30:47 -06:00
parent bcd15dc0eb
commit ec942edb48
4 changed files with 21 additions and 0 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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) {

View File

@ -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) {