Class DOMRecord
- java.lang.Object
-
- org.eclipse.persistence.internal.core.sessions.CoreAbstractRecord
-
- org.eclipse.persistence.internal.sessions.AbstractRecord
-
- org.eclipse.persistence.oxm.record.XMLRecord
-
- org.eclipse.persistence.oxm.record.DOMRecord
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.util.Map,AbstractMarshalRecord<AbstractSession,DatabaseField,XMLMarshaller,NamespaceResolver>,AbstractUnmarshalRecord<AbstractSession,DatabaseField,XMLUnmarshaller>,TransformationRecord,XMLRecord<AbstractSession>,Record
- Direct Known Subclasses:
EISDOMRecord,XMLTransformationRecord
public class DOMRecord extends XMLRecord implements TransformationRecord
PUBLIC: Provides a Record/Map API on an XML DOM element.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.persistence.internal.sessions.AbstractRecord
AbstractRecord.EntrySet, AbstractRecord.KeySet, AbstractRecord.NoEntry, AbstractRecord.RecordEntry, AbstractRecord.RecordEntryIterator, AbstractRecord.RecordKeyIterator, AbstractRecord.RecordValuesIterator, AbstractRecord.ValuesSet
-
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K extends java.lang.Object,V extends java.lang.Object>
-
Nested classes/interfaces inherited from interface org.eclipse.persistence.internal.oxm.record.XMLRecord
XMLRecord.Nil
-
-
Field Summary
-
Fields inherited from class org.eclipse.persistence.oxm.record.XMLRecord
currentObject, equalNamespaceResolvers, hasCustomNamespaceMapper, NIL, session, unmarshaller
-
Fields inherited from class org.eclipse.persistence.internal.sessions.AbstractRecord
fields, lookupField, noEntry, nullValueInFields, size, sopObject, values
-
Fields inherited from interface org.eclipse.persistence.internal.oxm.record.XMLRecord
DEFAULT_ATTRIBUTE_GROUP
-
-
Constructor Summary
Constructors Constructor Description DOMRecord()INTERNAL: Default constructor.DOMRecord(java.lang.String rootElementName)INTERNAL: Create a record with the root element name.DOMRecord(java.lang.String rootElementName, java.lang.String rootElementNamespaceURI)INTERNAL: Create a record with the root element name get the namespace URI from the namespaceResolver.DOMRecord(java.lang.String rootElementName, NamespaceResolver namespaceResolver)INTERNAL: Create a record with the root element name get the namespace URI from the namespaceResolver.DOMRecord(java.lang.String localRootElementName, NamespaceResolver namespaceResolver, org.w3c.dom.Node parent)INTERNAL: Create a record with the local root element name, that is a child of the parent.DOMRecord(java.lang.String localRootElementName, org.w3c.dom.Node parent)INTERNAL: Create a record with the local root element name, that is a child of the parent.DOMRecord(org.w3c.dom.Document document)INTERNAL: Create a record with the element.DOMRecord(org.w3c.dom.Element element)INTERNAL: Create a record with the element.DOMRecord(org.w3c.dom.Node node)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(DatabaseField key, java.lang.Object value)INTERNAL: Add the field-value pair to the document.XMLRecordbuildNestedRow(org.w3c.dom.Element element)INTERNAL: Build the nested record, this can be overwriten by subclasses to use their subclass instance.voidclear()PUBLIC: Clear the sub-nodes of the DOM.DOMRecordclone()INTERNAL: Clone the row and its values.booleancontains(java.lang.Object value)PUBLIC: Check if the value is contained in the row.booleancontainsKey(DatabaseField key)INTERNAL: Check if the field is contained in the row.org.w3c.dom.NodecreateNewDocument(java.lang.String defaultRootElementName)INTERNAL: Creates a new Document and returns the root element of that documentorg.w3c.dom.NodecreateNewDocument(java.lang.String defaultRootElementName, java.lang.String namespaceURI)INTERNAL: Creates a new Document and returns the root element of that documentjava.util.SetentrySet()PUBLIC:java.lang.Objectget(DatabaseField key)INTERNAL: Retrieve the value for the field.org.w3c.dom.DocumentgetDocument()PUBLIC: Return the document.org.w3c.dom.NodegetDOM()PUBLIC: Return the DOM.java.util.VectorgetFields()INTERNAL: This should not be used, but added some support for it as is called from some places such as sdk call used in the descriptor to define operation not supported, may also be called from toplin in some places.java.lang.ObjectgetIndicatingNoEntry(DatabaseField key)INTERNAL: Given a DatabaseField return the corresponding value from the documentjava.lang.ObjectgetIndicatingNoEntry(DatabaseField key, boolean shouldReturnNode)java.lang.ObjectgetIndicatingNoEntry(DatabaseField key, boolean shouldReturnNode, boolean checkForXsiNil)java.lang.StringgetLocalName()PUBLIC: Get the local name of the context root element.java.lang.StringgetNamespaceURI()PUBLIC: Get the namespace URI for the context root element.ReferenceResolvergetReferenceResolver()INTERNAL: The ReferenceResolver that is leveraged by key based mappings.java.util.VectorgetValues()INTERNAL: This should not be used, but added some support for it as is called from some places such as sdk call used in the descriptor to define operation not supported, may also be called from TopLink in some places.java.lang.ObjectgetValues(java.lang.String key)INTERNAL: Retrieve the value for the field name.java.lang.ObjectgetValues(DatabaseField key)INTERNAL: Given a DatabaseField, return the corresponding values from the documentjava.lang.ObjectgetValues(DatabaseField key, AbstractNullPolicy nullPolicy)java.util.List<XMLEntry>getValuesIndicatingNoEntry(java.util.List<DatabaseField> keys)java.util.List<XMLEntry>getValuesIndicatingNoEntry(java.util.List<DatabaseField> keys, boolean shouldReturnNodes)java.lang.ObjectgetValuesIndicatingNoEntry(DatabaseField key)java.lang.ObjectgetValuesIndicatingNoEntry(DatabaseField key, boolean shouldReturnNodes)INTERNAL: Given a DatabaseField, return the corresponding values from the documentjava.lang.ObjectgetValuesIndicatingNoEntry(DatabaseField key, boolean shouldReturnNodes, AbstractNullPolicy nullPolicy)java.lang.ObjectgetValuesIndicatingNoEntry(DatabaseField key, AbstractNullPolicy nullPolicy)java.util.SetkeySet()PUBLIC: Return the set of element names from the DOM.java.lang.Objectput(java.lang.Object key, java.lang.Object value)PUBLIC: Add the field-value pair to the row.java.lang.Objectput(java.util.List<XMLField> xmlFields, java.util.List<XMLEntry> values)java.lang.Objectput(DatabaseField key, java.lang.Object value)INTERNAL: Set the field value into the DOM.java.lang.Objectremove(DatabaseField key)INTERNAL: Remove the field key from the row.voidreplaceAt(java.lang.Object value, int index)INTERNAL: replaces the value at index with valuejava.lang.StringresolveNamespacePrefix(java.lang.String prefix)voidresolveReferences(CoreAbstractSession abstractSession, IDResolver idResolver)INTERNAL: If the UnmarshalRecord has a ReferenceResolver, tell it to resolve its references.voidsetDOM(org.w3c.dom.Element element)voidsetDOM(org.w3c.dom.Node element)INTERNAL: Sets the dom and updated document to be the owner document of the given elementprotected voidsetFields(java.util.Vector fields)INTERNAL: Setting fields vector will not update the document so this is not supportedvoidsetReferenceResolver(ReferenceResolver referenceResolver)INTERNAL: Set the ReferenceResolver that will be leveraged by key based mappings.voidsetSession(AbstractSession session)protected voidsetValues(java.util.Vector values)INTERNAL: Setting values vector will not update the document so this is not supportedintsize()Return the number of elements in the DOM.java.lang.StringtoString()INTERNAL: Print the dom XML string.voidtransformFromXML(java.io.Reader reader)Set the XML from an XML reader.voidtransformFromXML(java.lang.String xml)Set the XML from an XML string.voidtransformToWriter(java.io.Writer writer)Write the XML string representation of the DOM.java.lang.StringtransformToXML()Return the XML string representation of the DOM.java.util.Collectionvalues()PUBLIC: Return the collection of element values from the DOM.-
Methods inherited from class org.eclipse.persistence.oxm.record.XMLRecord
addExtraNamespacesToNamespaceResolver, addXsiTypeAndClassIndicatorIfRequired, addXsiTypeAndClassIndicatorIfRequired, attribute, attributeWithoutQName, convertToXMLField, convertToXMLField, get, getConversionManager, getCurrentObject, getDocPresPolicy, getIndicatingNoEntry, getLeafElementType, getMarshaller, getNamespaceResolver, getNamespaceSeparator, getOwningObject, getSession, getUnmarshaller, hasCustomNamespaceMapper, hasEqualNamespaceResolvers, isNamespaceAware, isXOPPackage, namespaceDeclaration, put, removeExtraNamespacesFromNamespaceResolver, setCurrentObject, setCustomNamespaceMapper, setDocPresPolicy, setEqualNamespaceResolvers, setLeafElementType, setLeafElementType, setMarshaller, setNamespaceResolver, setOwningObject, setUnmarshaller, setXOPPackage, writeXsiTypeAttribute, writeXsiTypeAttribute
-
Methods inherited from class org.eclipse.persistence.internal.sessions.AbstractRecord
containsKey, containsKey, containsValue, elements, get, getField, getLookupField, getSopObject, hasNullValueInFields, hasSopObject, isEmpty, keys, mergeFrom, putAll, remove, remove, replaceAt, resetSize, setNullValueInFields, setSopObject
-
-
-
-
Constructor Detail
-
DOMRecord
public DOMRecord()
INTERNAL: Default constructor.
-
DOMRecord
public DOMRecord(java.lang.String rootElementName)
INTERNAL: Create a record with the root element name.
-
DOMRecord
public DOMRecord(java.lang.String rootElementName, NamespaceResolver namespaceResolver)INTERNAL: Create a record with the root element name get the namespace URI from the namespaceResolver.
-
DOMRecord
public DOMRecord(java.lang.String rootElementName, java.lang.String rootElementNamespaceURI)INTERNAL: Create a record with the root element name get the namespace URI from the namespaceResolver.
-
DOMRecord
public DOMRecord(java.lang.String localRootElementName, org.w3c.dom.Node parent)INTERNAL: Create a record with the local root element name, that is a child of the parent.
-
DOMRecord
public DOMRecord(java.lang.String localRootElementName, NamespaceResolver namespaceResolver, org.w3c.dom.Node parent)INTERNAL: Create a record with the local root element name, that is a child of the parent. Lookup the namespace URI from the namespaceResolver.
-
DOMRecord
public DOMRecord(org.w3c.dom.Element element)
INTERNAL: Create a record with the element.
-
DOMRecord
public DOMRecord(org.w3c.dom.Node node)
-
DOMRecord
public DOMRecord(org.w3c.dom.Document document)
INTERNAL: Create a record with the element.
-
-
Method Detail
-
getLocalName
public java.lang.String getLocalName()
PUBLIC: Get the local name of the context root element.- Specified by:
getLocalNamein classXMLRecord
-
getNamespaceURI
public java.lang.String getNamespaceURI()
PUBLIC: Get the namespace URI for the context root element.- Specified by:
getNamespaceURIin classXMLRecord
-
getReferenceResolver
public ReferenceResolver getReferenceResolver()
INTERNAL: The ReferenceResolver that is leveraged by key based mappings.- Since:
- EclipseLink 2.5.0
-
setReferenceResolver
public void setReferenceResolver(ReferenceResolver referenceResolver)
INTERNAL: Set the ReferenceResolver that will be leveraged by key based mappings.- Since:
- EclipseLink 2.5.0
-
add
public void add(DatabaseField key, java.lang.Object value)
INTERNAL: Add the field-value pair to the document.- Overrides:
addin classAbstractRecord
-
clear
public void clear()
PUBLIC: Clear the sub-nodes of the DOM.
-
clone
public DOMRecord clone()
INTERNAL: Clone the row and its values.- Overrides:
clonein classAbstractRecord
-
createNewDocument
public org.w3c.dom.Node createNewDocument(java.lang.String defaultRootElementName)
INTERNAL: Creates a new Document and returns the root element of that document
-
createNewDocument
public org.w3c.dom.Node createNewDocument(java.lang.String defaultRootElementName, java.lang.String namespaceURI)INTERNAL: Creates a new Document and returns the root element of that document
-
getDocument
public org.w3c.dom.Document getDocument()
PUBLIC: Return the document.- Specified by:
getDocumentin classXMLRecord
-
containsKey
public boolean containsKey(DatabaseField key)
INTERNAL: Check if the field is contained in the row.- Overrides:
containsKeyin classAbstractRecord
-
contains
public boolean contains(java.lang.Object value)
PUBLIC: Check if the value is contained in the row.
-
get
public java.lang.Object get(DatabaseField key)
Description copied from class:XMLRecordINTERNAL: Retrieve the value for the field. If missing null is returned.- Specified by:
getin interfaceAbstractUnmarshalRecord<AbstractSession,DatabaseField,XMLUnmarshaller>- Overrides:
getin classXMLRecord
-
getIndicatingNoEntry
public java.lang.Object getIndicatingNoEntry(DatabaseField key)
INTERNAL: Given a DatabaseField return the corresponding value from the document- Overrides:
getIndicatingNoEntryin classAbstractRecord
-
getIndicatingNoEntry
public java.lang.Object getIndicatingNoEntry(DatabaseField key, boolean shouldReturnNode)
-
getIndicatingNoEntry
public java.lang.Object getIndicatingNoEntry(DatabaseField key, boolean shouldReturnNode, boolean checkForXsiNil)
-
getValues
public java.lang.Object getValues(java.lang.String key)
INTERNAL: Retrieve the value for the field name.- Overrides:
getValuesin classAbstractRecord
-
getValues
public java.lang.Object getValues(DatabaseField key)
INTERNAL: Given a DatabaseField, return the corresponding values from the document- Overrides:
getValuesin classAbstractRecord
-
getValues
public java.lang.Object getValues(DatabaseField key, AbstractNullPolicy nullPolicy)
-
getValuesIndicatingNoEntry
public java.lang.Object getValuesIndicatingNoEntry(DatabaseField key)
-
getValuesIndicatingNoEntry
public java.lang.Object getValuesIndicatingNoEntry(DatabaseField key, AbstractNullPolicy nullPolicy)
-
getValuesIndicatingNoEntry
public java.util.List<XMLEntry> getValuesIndicatingNoEntry(java.util.List<DatabaseField> keys)
-
getValuesIndicatingNoEntry
public java.util.List<XMLEntry> getValuesIndicatingNoEntry(java.util.List<DatabaseField> keys, boolean shouldReturnNodes)
-
getValuesIndicatingNoEntry
public java.lang.Object getValuesIndicatingNoEntry(DatabaseField key, boolean shouldReturnNodes)
INTERNAL: Given a DatabaseField, return the corresponding values from the document
-
getValuesIndicatingNoEntry
public java.lang.Object getValuesIndicatingNoEntry(DatabaseField key, boolean shouldReturnNodes, AbstractNullPolicy nullPolicy)
-
buildNestedRow
public XMLRecord buildNestedRow(org.w3c.dom.Element element)
INTERNAL: Build the nested record, this can be overwriten by subclasses to use their subclass instance.
-
getDOM
public org.w3c.dom.Node getDOM()
PUBLIC: Return the DOM.- Specified by:
getDOMin interfaceAbstractMarshalRecord<AbstractSession,DatabaseField,XMLMarshaller,NamespaceResolver>- Specified by:
getDOMin classXMLRecord
-
put
public java.lang.Object put(DatabaseField key, java.lang.Object value)
INTERNAL: Set the field value into the DOM. The field name must be a valid simple XPath expression.- Specified by:
putin interfaceAbstractMarshalRecord<AbstractSession,DatabaseField,XMLMarshaller,NamespaceResolver>- Overrides:
putin classAbstractRecord
-
put
public java.lang.Object put(java.util.List<XMLField> xmlFields, java.util.List<XMLEntry> values)
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value) throws ValidationExceptionDescription copied from class:AbstractRecordPUBLIC: Add the field-value pair to the row.- Specified by:
putin interfacejava.util.Map- Specified by:
putin interfaceTransformationRecord- Overrides:
putin classAbstractRecord- Throws:
ValidationException
-
remove
public java.lang.Object remove(DatabaseField key)
INTERNAL: Remove the field key from the row.- Overrides:
removein classAbstractRecord
-
replaceAt
public void replaceAt(java.lang.Object value, int index)INTERNAL: replaces the value at index with value- Overrides:
replaceAtin classAbstractRecord
-
entrySet
public java.util.Set entrySet()
PUBLIC:- Specified by:
entrySetin interfacejava.util.Map- Overrides:
entrySetin classAbstractRecord
-
setFields
protected void setFields(java.util.Vector fields) throws XMLMarshalExceptionINTERNAL: Setting fields vector will not update the document so this is not supported- Overrides:
setFieldsin classAbstractRecord- Throws:
XMLMarshalException
-
getFields
public java.util.Vector getFields()
INTERNAL: This should not be used, but added some support for it as is called from some places such as sdk call used in the descriptor to define operation not supported, may also be called from toplin in some places.- Overrides:
getFieldsin classAbstractRecord
-
getValues
public java.util.Vector getValues()
INTERNAL: This should not be used, but added some support for it as is called from some places such as sdk call used in the descriptor to define operation not supported, may also be called from TopLink in some places.- Overrides:
getValuesin classAbstractRecord
-
setValues
protected void setValues(java.util.Vector values) throws XMLMarshalExceptionINTERNAL: Setting values vector will not update the document so this is not supported- Overrides:
setValuesin classAbstractRecord- Throws:
XMLMarshalException
-
setDOM
public void setDOM(org.w3c.dom.Node element)
INTERNAL: Sets the dom and updated document to be the owner document of the given element
-
setDOM
public void setDOM(org.w3c.dom.Element element)
-
toString
public java.lang.String toString()
INTERNAL: Print the dom XML string.- Overrides:
toStringin classAbstractRecord
-
keySet
public java.util.Set keySet()
PUBLIC: Return the set of element names from the DOM.- Specified by:
keySetin interfacejava.util.Map- Overrides:
keySetin classAbstractRecord
-
values
public java.util.Collection values()
PUBLIC: Return the collection of element values from the DOM.- Specified by:
valuesin interfacejava.util.Map- Overrides:
valuesin classAbstractRecord
-
size
public int size()
Return the number of elements in the DOM.- Specified by:
sizein interfacejava.util.Map- Overrides:
sizein classAbstractRecord
-
transformFromXML
public void transformFromXML(java.lang.String xml)
Set the XML from an XML string.
-
setSession
public void setSession(AbstractSession session)
- Specified by:
setSessionin interfaceAbstractMarshalRecord<AbstractSession,DatabaseField,XMLMarshaller,NamespaceResolver>- Overrides:
setSessionin classXMLRecord
-
transformFromXML
public void transformFromXML(java.io.Reader reader)
Set the XML from an XML reader.
-
transformToXML
public java.lang.String transformToXML()
Return the XML string representation of the DOM.- Specified by:
transformToXMLin classXMLRecord
-
transformToWriter
public void transformToWriter(java.io.Writer writer)
Write the XML string representation of the DOM.
-
resolveNamespacePrefix
public java.lang.String resolveNamespacePrefix(java.lang.String prefix)
- Specified by:
resolveNamespacePrefixin interfaceAbstractMarshalRecord<AbstractSession,DatabaseField,XMLMarshaller,NamespaceResolver>- Specified by:
resolveNamespacePrefixin interfaceAbstractUnmarshalRecord<AbstractSession,DatabaseField,XMLUnmarshaller>- Overrides:
resolveNamespacePrefixin classXMLRecord
-
resolveReferences
public void resolveReferences(CoreAbstractSession abstractSession, IDResolver idResolver)
INTERNAL: If the UnmarshalRecord has a ReferenceResolver, tell it to resolve its references.- Since:
- EclipseLink 2.5.0
-
-