Module org.eclipse.persistence.core
Class XMLUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,CONTEXT extends Context,DESCRIPTOR extends Descriptor,ID_RESOLVER extends IDResolver,MEDIA_TYPE extends MediaType,ROOT extends Root,UNMARSHALLER_HANDLER extends UnmarshallerHandler,UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
java.lang.Object
org.eclipse.persistence.internal.oxm.Unmarshaller<ABSTRACT_SESSION,CONTEXT,DESCRIPTOR,ID_RESOLVER,MEDIA_TYPE,ROOT,UNMARSHALLER_HANDLER,UNMARSHALLER_LISTENER>
org.eclipse.persistence.internal.oxm.XMLUnmarshaller<ABSTRACT_SESSION,CONTEXT,DESCRIPTOR,ID_RESOLVER,MEDIA_TYPE,ROOT,UNMARSHALLER_HANDLER,UNMARSHALLER_LISTENER>
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
XMLUnmarshaller
public class XMLUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,CONTEXT extends Context,DESCRIPTOR extends Descriptor,ID_RESOLVER extends IDResolver,MEDIA_TYPE extends MediaType,ROOT extends Root,UNMARSHALLER_HANDLER extends UnmarshallerHandler,UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
extends Unmarshaller<ABSTRACT_SESSION,CONTEXT,DESCRIPTOR,ID_RESOLVER,MEDIA_TYPE,ROOT,UNMARSHALLER_HANDLER,UNMARSHALLER_LISTENER>
implements Cloneable
Class used to unmarshal XML & JSON to objects.
Create an XMLUnmarshaller from an XMLContext.
Code Sample
XMLContext context = new XMLContext("mySessionName");
XMLUnmarshaller unmarshaller = context.createUnmarshaller();
XML can be unmarshalled from the following inputs:
- java.io.File
- java.io.InputStream
- java.io.Reader
- java.net.URL
- javax.xml.transform.Source
- org.w3c.dom.Node
- org.xml.sax.InputSource
XML that can be unmarshalled is XML which has a root tag that corresponds to a default root element on an XMLDescriptor in the TopLink project associated with the XMLContext.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.persistence.internal.oxm.Unmarshaller
Unmarshaller.Listener
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final int
protected PlatformUnmarshaller
static final int
protected boolean
protected UNMARSHALLER_HANDLER
Fields inherited from class org.eclipse.persistence.internal.oxm.Unmarshaller
context
-
Constructor Summary
ModifierConstructorDescriptionprotected
XMLUnmarshaller
(CONTEXT xmlContext) protected
XMLUnmarshaller
(CONTEXT xmlContext, Map<String, Boolean> parserFeatures) protected
XMLUnmarshaller
(XMLUnmarshaller xmlUnmarshaller) -
Method Summary
Modifier and TypeMethodDescriptionclone()
INTERNALcreateRootUnmarshalRecord
(Class<?> clazz) INTERNALcreateUnmarshalRecord
(DESCRIPTOR xmlDescriptor, ABSTRACT_SESSION session) INTERNALValue that will be used to prefix attributes.Get the EntityResolver set on this XMLUnmarshallerGet the ErrorHandler set on this XMLUnmarshallerReturn this Unmarshaller's custom IDResolver.Returns json type configuration.Get the MediaType for this xmlUnmarshaller.Name of the NamespaceResolver to be used during unmarshal Ignored unmarshalling XML.char
Get the namespace separator used during unmarshal operations.Return a properties object for a given instance of the XMLUnmarshaller.getProperty
(Object key) Return the property for a given key, if one exists.INTERNAL: This is the text handler during unmarshal operations.Class
<?> Get the class that will be instantiated to handled unmapped content Class must implement the org.eclipse.persistence.oxm.unmapped.UnmappedContentHandler interfaceINTERNAL: Returns the AttributeGroup or the name of the AttributeGroup to be used to unmarshal.int
Get the validation mode set on this XMLUnmarshaller By default, the unmarshaller is set to be NONVALIDATINGName of the property to marshal/unmarshal as a wrapper on the text() mappings Ignored unmarshalling XML.Return the instance of XMLContext that was used to create this instance of XMLUnmarshaller.protected void
initialize
(Map<String, Boolean> parserFeatures) boolean
INTERNALboolean
INTERNALboolean
Return if this XMLUnmarshaller should try to automatically determine the MediaType of the document (instead of using the MediaType set by setMediaType)boolean
Return if this Unmarshaller should perform case insensitive unmarshalling.boolean
Determine if the @XMLRootElement should be marshalled when present.boolean
final boolean
boolean
void
void
setAttributePrefix
(String attributePrefix) Value that will be used to prefix attributes.void
setAutoDetectMediaType
(boolean autoDetectMediaType) Set if this XMLUnmarshaller should try to automatically determine the MediaType of the document (instead of using the MediaType set by setMediaType)void
setCaseInsensitive
(boolean caseInsensitive) Set true to make this Unmarshaller perform case insensitive unmarshalling.final void
setDisableSecureProcessing
(boolean disableSecureProcessing) void
setEntityResolver
(EntityResolver entityResolver) Set the EntityResolver on this XMLUnmarshallervoid
setErrorHandler
(ErrorHandler errorHandler) Set the ErrorHandler on this XMLUnmarshallervoid
setIDResolver
(ID_RESOLVER idResolver) Set this Unmarshaller's custom IDResolver.void
setIncludeRoot
(boolean includeRoot) Determine if the @XMLRootElement should be marshalled when present.void
setLogPayload
(Boolean logPayload) void
setMediaType
(MEDIA_TYPE mediaType) Set the MediaType for this xmlUnmarshaller.void
setNamespaceResolver
(NamespaceResolver namespaceResolver) Get the NamespaceResolver to be used during unmarshal Ignored unmarshalling XML.void
setNamespaceSeparator
(char namespaceSeparator) Set the namespace separator used during unmarshal operations.void
setResultAlwaysXMLRoot
(boolean alwaysReturnRoot) void
void
setUnmappedContentHandlerClass
(Class<?> aClass) Set the class that will be instantiated to handled unmapped content Class must implement the org.eclipse.persistence.oxm.unmapped.UnmappedContentHandler interfacevoid
setUnmarshalAttributeGroup
(Object attributeGroup) void
setValueWrapper
(String valueWrapper) Name of the property to marshal/unmarshal as a wrapper on the text() mappings Ignored unmarshalling XML.void
setWarnOnUnmappedElement
(boolean warnOnUnmappedElement) INTERNAL: Set to true if a warning exception should be generated when an unmapped element is encountered, false otherwise.void
setWrapperAsCollectionName
(boolean wrapperAsCollectionName) void
setXMLContext
(CONTEXT value) Set the XMLContext used by this instance of XMLUnmarshaller.boolean
INTERNAL: Returns true if a warning exception should be generated when an unmapped element is encountered.PUBLIC: Read and parse the XML document from the file and map the XML data into an object.PUBLIC: Read and parse the XML document from the file and map the XML data into an object.unmarshal
(InputStream inputStream) PUBLIC: Read and parse the XML document from the inputStream and map the XML data into an object.unmarshal
(InputStream inputStream, Class<?> clazz) PUBLIC: Read and parse the XML document from the inputStream and map the XML data into an object.PUBLIC: Read and parse the XML document from the reader and map the XML data into an object.PUBLIC: Read and parse the XML document from the reader and map the XML data into an object.PUBLIC: Read and parse the XML document from the url and map the XML data into an object.PUBLIC: Read and parse the XML document from the url and map the XML data into an object.PUBLIC: Read and parse the XML document from the source and map the XML data into an object.PUBLIC: Read and parse the XML document from the source and map the XML data into an object.PUBLIC: Map the XML node into an object.PUBLIC: Map the XML node into an object.unmarshal
(InputSource inputSource) PUBLIC: Read and parse the XML document from the inputSource and map the XML data into an object.unmarshal
(InputSource inputSource, Class<?> clazz) PUBLIC: Read and parse the XML document from the inputSource and map the XML data into an object.unmarshal
(XMLReader xmlReader, InputSource inputSource) unmarshal
(XMLReader xmlReader, InputSource inputSource, Class<?> clazz) Methods inherited from class org.eclipse.persistence.internal.oxm.Unmarshaller
getContext, getUnmarshalListener, setUnmarshalListener
-
Field Details
-
NONVALIDATING
public static final int NONVALIDATING- See Also:
-
SCHEMA_VALIDATION
public static final int SCHEMA_VALIDATION- See Also:
-
DTD_VALIDATION
public static final int DTD_VALIDATION- See Also:
-
xmlUnmarshallerHandler
-
platformUnmarshaller
-
schemasAreInitialized
protected boolean schemasAreInitialized
-
-
Constructor Details
-
XMLUnmarshaller
-
XMLUnmarshaller
-
XMLUnmarshaller
-
-
Method Details
-
initialize
-
setMediaType
Set the MediaType for this xmlUnmarshaller. See org.eclipse.persistence.oxm.MediaType for the media types supported by EclipseLink MOXy- Since:
- 2.4
-
getMediaType
Get the MediaType for this xmlUnmarshaller. See org.eclipse.persistence.oxm.MediaType for the media types supported by EclipseLink MOXy If not set the default is MediaType.APPLICATION_XML- Specified by:
getMediaType
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- MediaType
- Since:
- 2.4
-
getXMLContext
Return the instance of XMLContext that was used to create this instance of XMLUnmarshaller. -
setXMLContext
Set the XMLContext used by this instance of XMLUnmarshaller. -
getValidationMode
public int getValidationMode()Get the validation mode set on this XMLUnmarshaller By default, the unmarshaller is set to be NONVALIDATING- Returns:
- the validation mode
-
getEntityResolver
Get the EntityResolver set on this XMLUnmarshaller- Returns:
- the EntityResolver set on this XMLUnmarshaller
-
setEntityResolver
Set the EntityResolver on this XMLUnmarshaller- Parameters:
entityResolver
- the EntityResolver to set on this XMLUnmarshaller
-
getErrorHandler
Get the ErrorHandler set on this XMLUnmarshaller- Specified by:
getErrorHandler
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- the ErrorHandler set on this XMLUnmarshaller
-
setErrorHandler
Set the ErrorHandler on this XMLUnmarshaller- Parameters:
errorHandler
- the ErrorHandler to set on this XMLUnmarshaller
-
getUnmappedContentHandlerClass
Get the class that will be instantiated to handled unmapped content Class must implement the org.eclipse.persistence.oxm.unmapped.UnmappedContentHandler interface- Specified by:
getUnmappedContentHandlerClass
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setUnmappedContentHandlerClass
Set the class that will be instantiated to handled unmapped content Class must implement the org.eclipse.persistence.oxm.unmapped.UnmappedContentHandler interface -
getStringBuffer
INTERNAL: This is the text handler during unmarshal operations.- Specified by:
getStringBuffer
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
unmarshal
PUBLIC: Read and parse the XML document from the file and map the XML data into an object. The file must contain a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
file
- The file to unmarshal from- Returns:
- the object which resulted from unmarshalling the given file
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the file and map the XML data into an object. The file must contain a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
file
- The file to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given file
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the inputStream and map the XML data into an object. The inputStream must contain a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
inputStream
- The inputStream to unmarshal from- Returns:
- the object which resulted from unmarshalling the given inputStream
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the inputStream and map the XML data into an object. The file must contain a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
inputStream
- The inputStream to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given inputStream
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the reader and map the XML data into an object. The reader must contain a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
reader
- The reader to unmarshal from- Returns:
- the object which resulted from unmarshalling the given reader
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the reader and map the XML data into an object. The file must contain a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
reader
- The reader to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given reader
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the url and map the XML data into an object. The url must reference a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
url
- The url to unmarshal from- Returns:
- the object which resulted from unmarshalling the given url
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the url and map the XML data into an object. The url must reference a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
url
- The url to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given url
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the inputSource and map the XML data into an object. The inputSource must contain a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
inputSource
- The inputSource to unmarshal from- Returns:
- the object which resulted from unmarshalling the given inputSource
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the inputSource and map the XML data into an object. The inputSource must contain a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
inputSource
- The inputSource to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given inputSource
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Map the XML node into an object. The node must be a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
node
- The node to unmarshal from- Returns:
- the object which resulted from unmarshalling the given node
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Map the XML node into an object. The node must be a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
node
- The node to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given node
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
PUBLIC: Read and parse the XML document from the source and map the XML data into an object. The source must contain a valid XML document, and be mapped by a project used to create the XMLContext. The type of object returned will be based on the root element of the XML document.- Parameters:
source
- The source to unmarshal from- Returns:
- the object which resulted from unmarshalling the given source
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
getProperties
Return a properties object for a given instance of the XMLUnmarshaller. -
getProperty
Return the property for a given key, if one exists.- Specified by:
getProperty
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
unmarshal
PUBLIC: Read and parse the XML document from the source and map the XML data into an object. The source must contain a valid XML document, and be mapped by a project used to create the XMLContext.- Parameters:
source
- The inputSource to unmarshal fromclazz
- The type of object to return.- Returns:
- the object which resulted from unmarshalling the given source
- Throws:
XMLMarshalException
- if an error occurred during unmarshalling
-
unmarshal
-
unmarshal
-
getUnmarshallerHandler
- Specified by:
getUnmarshallerHandler
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
getAttachmentUnmarshaller
- Specified by:
getAttachmentUnmarshaller
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setAttachmentUnmarshaller
-
setResultAlwaysXMLRoot
public void setResultAlwaysXMLRoot(boolean alwaysReturnRoot) -
isResultAlwaysXMLRoot
public boolean isResultAlwaysXMLRoot()- Specified by:
isResultAlwaysXMLRoot
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setSchema
-
getSchema
- Specified by:
getSchema
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
getAttributePrefix
Value that will be used to prefix attributes. Ignored unmarshalling XML.- Specified by:
getAttributePrefix
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4
-
setAttributePrefix
Value that will be used to prefix attributes. Ignored unmarshalling XML.- Since:
- 2.4
-
getValueWrapper
Name of the property to marshal/unmarshal as a wrapper on the text() mappings Ignored unmarshalling XML.- Specified by:
getValueWrapper
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4
-
setValueWrapper
Name of the property to marshal/unmarshal as a wrapper on the text() mappings Ignored unmarshalling XML.- Since:
- 2.4
-
getNamespaceSeparator
public char getNamespaceSeparator()Get the namespace separator used during unmarshal operations. If mediaType is application/json '.' is the default Ignored unmarshalling XML.- Specified by:
getNamespaceSeparator
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4
-
setNamespaceSeparator
public void setNamespaceSeparator(char namespaceSeparator) Set the namespace separator used during unmarshal operations. If mediaType is application/json '.' is the default Ignored unmarshalling XML.- Since:
- 2.4
-
isIncludeRoot
public boolean isIncludeRoot()Determine if the @XMLRootElement should be marshalled when present. Ignored unmarshalling XML.- Specified by:
isIncludeRoot
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4
-
setIncludeRoot
public void setIncludeRoot(boolean includeRoot) Determine if the @XMLRootElement should be marshalled when present. Ignored unmarshalling XML.- Since:
- 2.4
-
isApplicationJSON
public boolean isApplicationJSON()INTERNAL- Specified by:
isApplicationJSON
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- true if the media type is application/json, else false.
- Since:
- EclipseLink 2.6.0
-
isApplicationXML
public boolean isApplicationXML()INTERNAL- Specified by:
isApplicationXML
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- true if the media type is application/xml, else false.
- Since:
- EclipseLink 2.6.0
-
isAutoDetectMediaType
public boolean isAutoDetectMediaType()Return if this XMLUnmarshaller should try to automatically determine the MediaType of the document (instead of using the MediaType set by setMediaType)- Specified by:
isAutoDetectMediaType
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setAutoDetectMediaType
public void setAutoDetectMediaType(boolean autoDetectMediaType) Set if this XMLUnmarshaller should try to automatically determine the MediaType of the document (instead of using the MediaType set by setMediaType) -
isCaseInsensitive
public boolean isCaseInsensitive()Return if this Unmarshaller should perform case insensitive unmarshalling.- Specified by:
isCaseInsensitive
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setCaseInsensitive
public void setCaseInsensitive(boolean caseInsensitive) Set true to make this Unmarshaller perform case insensitive unmarshalling. -
getNamespaceResolver
Name of the NamespaceResolver to be used during unmarshal Ignored unmarshalling XML.- Specified by:
getNamespaceResolver
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4
-
setNamespaceResolver
Get the NamespaceResolver to be used during unmarshal Ignored unmarshalling XML.- Since:
- 2.4
-
isWrapperAsCollectionName
public boolean isWrapperAsCollectionName()- Specified by:
isWrapperAsCollectionName
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.4.2
-
setWrapperAsCollectionName
public void setWrapperAsCollectionName(boolean wrapperAsCollectionName) - Since:
- 2.4.2
-
clone
-
getIDResolver
Return this Unmarshaller's custom IDResolver.- Specified by:
getIDResolver
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- the custom IDResolver, or null if one has not been specified.
- Since:
- 2.3.3
- See Also:
-
setIDResolver
Set this Unmarshaller's custom IDResolver.- Specified by:
setIDResolver
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.3.3
- See Also:
-
createRoot
INTERNAL- Specified by:
createRoot
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.5.0
-
createRootUnmarshalRecord
INTERNAL- Specified by:
createRootUnmarshalRecord
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.5.0
-
createUnmarshalRecord
INTERNAL- Specified by:
createUnmarshalRecord
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.5.0
-
getUnmarshalAttributeGroup
INTERNAL: Returns the AttributeGroup or the name of the AttributeGroup to be used to unmarshal.- Specified by:
getUnmarshalAttributeGroup
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener>
-
setUnmarshalAttributeGroup
-
shouldWarnOnUnmappedElement
public boolean shouldWarnOnUnmappedElement()INTERNAL: Returns true if a warning exception should be generated when an unmapped element is encountered.- Specified by:
shouldWarnOnUnmappedElement
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Since:
- 2.6.0
-
setWarnOnUnmappedElement
public void setWarnOnUnmappedElement(boolean warnOnUnmappedElement) INTERNAL: Set to true if a warning exception should be generated when an unmapped element is encountered, false otherwise.- Since:
- 2.6.0
-
getJsonTypeConfiguration
Returns json type configuration.- Specified by:
getJsonTypeConfiguration
in classUnmarshaller<ABSTRACT_SESSION extends CoreAbstractSession,
CONTEXT extends Context, DESCRIPTOR extends Descriptor, ID_RESOLVER extends IDResolver, MEDIA_TYPE extends MediaType, ROOT extends Root, UNMARSHALLER_HANDLER extends UnmarshallerHandler, UNMARSHALLER_LISTENER extends Unmarshaller.Listener> - Returns:
- json type configuration
- Since:
- 2.6.0
-
isSecureProcessingDisabled
public final boolean isSecureProcessingDisabled() -
setDisableSecureProcessing
public final void setDisableSecureProcessing(boolean disableSecureProcessing) -
isLogPayload
-
setLogPayload
-