Uses of Class
jakarta.xml.bind.JAXBException
-
Packages that use JAXBException Package Description com.sun.tools.xjc.runtime Code generated into the user's packages in certain compilation mode.jakarta.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.jakarta.xml.bind.helpers Jakarta XML Binding Provider Use Only: Provides partial default implementations for some of thejakarta.xml.bindinterfaces.jakarta.xml.bind.util Useful client utility classes.org.apache.cxf.common.jaxb org.apache.cxf.ws.addressing org.glassfish.jaxb.core.v2.model.core The in-memory model of the JAXB-bound beans.org.glassfish.jaxb.core.v2.runtime org.glassfish.jaxb.runtime org.glassfish.jaxb.runtime.api Runtime API for the JAX-WS RIorg.glassfish.jaxb.runtime.v2 The JAXB 2.0 runtimeorg.glassfish.jaxb.runtime.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller.org.glassfish.jaxb.runtime.v2.runtime.reflect Abstraction around accessing data of actual objects.org.glassfish.jaxb.runtime.v2.runtime.unmarshaller org.jboss.resteasy.plugins.providers.atom org.jboss.resteasy.plugins.providers.jaxb org.jboss.resteasy.plugins.providers.jaxb.i18n -
-
Uses of JAXBException in com.sun.tools.xjc.runtime
Methods in com.sun.tools.xjc.runtime that throw JAXBException Modifier and Type Method Description static JAXBContextJAXBContextFactory. createContext(Class<?>[] classes, Map<String,?> properties)The JAXB API will invoke this method via reflectionstatic JAXBContextJAXBContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,?> properties)The JAXB API will invoke this method via reflection -
Uses of JAXBException in jakarta.xml.bind
Subclasses of JAXBException in jakarta.xml.bind Modifier and Type Class Description classMarshalExceptionThis exception indicates that an error has occurred while performing a marshal operation that the provider is unable to recover from.classPropertyExceptionThis exception indicates that an error was encountered while getting or setting a property.classUnmarshalExceptionThis exception indicates that an error has occurred while performing an unmarshal operation that prevents the Jakarta XML Binding Provider from completing the operation.classValidationExceptionThis exception indicates that an error has occurred while performing a validate operation.Methods in jakarta.xml.bind that throw JAXBException Modifier and Type Method Description JAXBContextJAXBContextFactory. createContext(Class<?>[] classesToBeBound, Map<String,?> properties)Create a new instance of aJAXBContextclass.JAXBContextJAXBContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,?> properties)Create a new instance of aJAXBContextclass.abstract MarshallerJAXBContext. createMarshaller()Create aMarshallerobject that can be used to convert a java content tree into XML data.abstract UnmarshallerJAXBContext. createUnmarshaller()Create anUnmarshallerobject that can be used to convert XML data into a java content tree.abstract ValidatorJAXBContext. createValidator()Deprecated.since JAXB2.0abstract ValidationEventHandlerBinder. getEventHandler()Return the current event handler or the default event handler if one hasn't been set.ValidationEventHandlerMarshaller. getEventHandler()Return the current event handler or the default event handler if one hasn't been set.ValidationEventHandlerUnmarshaller. getEventHandler()Return the current event handler or the default event handler if one hasn't been set.ValidationEventHandlerValidator. getEventHandler()Deprecated.since JAXB2.0NodeMarshaller. getNode(Object contentTree)Get a DOM tree view of the content tree(Optional).ObjectUnmarshallerHandler. getResult()Obtains the unmarshalled result.booleanUnmarshaller. isValidating()Deprecated.since JAXB2.0, please seeUnmarshaller.getSchema()abstract voidBinder. marshal(Object jaxbObject, XmlNode xmlNode)Marshal a Jakarta XML Binding object tree to a new XML document.voidMarshaller. marshal(Object jaxbElement, File output)Marshal the content tree rooted atjaxbElementinto a file.voidMarshaller. marshal(Object jaxbElement, OutputStream os)Marshal the content tree rooted atjaxbElementinto an output stream.voidMarshaller. marshal(Object jaxbElement, Writer writer)Marshal the content tree rooted atjaxbElementinto a Writer.voidMarshaller. marshal(Object jaxbElement, XMLEventWriter writer)Marshal the content tree rooted atjaxbElementinto aXMLEventWriter.voidMarshaller. marshal(Object jaxbElement, XMLStreamWriter writer)Marshal the content tree rooted atjaxbElementinto aXMLStreamWriter.voidMarshaller. marshal(Object jaxbElement, Result result)Marshal the content tree rooted atjaxbElementinto the specifiedjavax.xml.transform.Result.voidMarshaller. marshal(Object jaxbElement, Node node)Marshal the content tree rooted atjaxbElementinto a DOM tree.voidMarshaller. marshal(Object jaxbElement, ContentHandler handler)Marshal the content tree rooted atjaxbElementinto SAX2 events.static JAXBContextJAXBContext. newInstance(Class<?>... classesToBeBound)Create a new instance of aJAXBContextclass.static JAXBContextJAXBContext. newInstance(Class<?>[] classesToBeBound, Map<String,?> properties)Create a new instance of aJAXBContextclass.static JAXBContextJAXBContext. newInstance(String contextPath)Create a new instance of aJAXBContextclass.static JAXBContextJAXBContext. newInstance(String contextPath, ClassLoader classLoader)Create a new instance of aJAXBContextclass.static JAXBContextJAXBContext. newInstance(String contextPath, ClassLoader classLoader, Map<String,?> properties)Create a new instance of aJAXBContextclass.abstract voidBinder. setEventHandler(ValidationEventHandler handler)Allow an application to register aValidationEventHandler.voidMarshaller. setEventHandler(ValidationEventHandler handler)Allow an application to register a validation event handler.voidUnmarshaller. setEventHandler(ValidationEventHandler handler)Allow an application to register aValidationEventHandler.voidValidator. setEventHandler(ValidationEventHandler handler)Deprecated.since JAXB2.0voidUnmarshaller. setValidating(boolean validating)Deprecated.since JAXB2.0, please seeUnmarshaller.setSchema(javax.xml.validation.Schema)abstract ObjectBinder. unmarshal(XmlNode xmlNode)Unmarshal XML infoset view to a Jakarta XML Binding object tree.abstract <T> JAXBElement<T>Binder. unmarshal(XmlNode xmlNode, Class<T> declaredType)Unmarshal XML root element by provideddeclaredTypeto a Jakarta XML Binding object tree.ObjectUnmarshaller. unmarshal(File f)Unmarshal XML data from the specified file and return the resulting content tree.ObjectUnmarshaller. unmarshal(InputStream is)Unmarshal XML data from the specified InputStream and return the resulting content tree.ObjectUnmarshaller. unmarshal(Reader reader)Unmarshal XML data from the specified Reader and return the resulting content tree.ObjectUnmarshaller. unmarshal(URL url)Unmarshal XML data from the specified URL and return the resulting content tree.ObjectUnmarshaller. unmarshal(XMLEventReader reader)Unmarshal XML data from the specified pull parser and return the resulting content tree.<T> JAXBElement<T>Unmarshaller. unmarshal(XMLEventReader reader, Class<T> declaredType)Unmarshal root element to Jakarta XML Binding mappeddeclaredTypeand return the resulting content tree.ObjectUnmarshaller. unmarshal(XMLStreamReader reader)Unmarshal XML data from the specified pull parser and return the resulting content tree.<T> JAXBElement<T>Unmarshaller. unmarshal(XMLStreamReader reader, Class<T> declaredType)Unmarshal root element to Jakarta XML Binding mappeddeclaredTypeand return the resulting content tree.ObjectUnmarshaller. unmarshal(Source source)Unmarshal XML data from the specified XML Source and return the resulting content tree.<T> JAXBElement<T>Unmarshaller. unmarshal(Source source, Class<T> declaredType)Unmarshal XML data from the specified XML Source bydeclaredTypeand return the resulting content tree.ObjectUnmarshaller. unmarshal(Node node)Unmarshal global XML data from the specified DOM tree and return the resulting content tree.<T> JAXBElement<T>Unmarshaller. unmarshal(Node node, Class<T> declaredType)Unmarshal XML data by Jakarta XML Binding mappeddeclaredTypeand return the resulting content tree.ObjectUnmarshaller. unmarshal(InputSource source)Unmarshal XML data from the specified SAX InputSource and return the resulting content tree.abstract ObjectBinder. updateJAXB(XmlNode xmlNode)Takes an XML node and updates its associated Jakarta XML Binding object and its descendants.abstract XmlNodeBinder. updateXML(Object jaxbObject)Takes an Jakarta XML Binding object and updates its associated XML node and its descendants.abstract XmlNodeBinder. updateXML(Object jaxbObject, XmlNode xmlNode)Changes in Jakarta XML Binding object tree are updated in its associated XML parse tree.booleanValidator. validate(Object subrootObj)Deprecated.since JAXB2.0booleanValidator. validateRoot(Object rootObj)Deprecated.since JAXB2.0 -
Uses of JAXBException in jakarta.xml.bind.helpers
Methods in jakarta.xml.bind.helpers that throw JAXBException Modifier and Type Method Description ValidationEventHandlerAbstractMarshallerImpl. getEventHandler()ValidationEventHandlerAbstractUnmarshallerImpl. getEventHandler()Return the current event handler or the default event handler if one hasn't been set.NodeAbstractMarshallerImpl. getNode(Object obj)By default, the getNode method is unsupported and throw anUnsupportedOperationException.protected XMLReaderAbstractUnmarshallerImpl. getXMLReader()Obtains a configured XMLReader.booleanAbstractUnmarshallerImpl. isValidating()Indicates whether or not the Unmarshaller is configured to validate during unmarshal operations.voidAbstractMarshallerImpl. marshal(Object jaxbElement, File output)voidAbstractMarshallerImpl. marshal(Object obj, OutputStream os)voidAbstractMarshallerImpl. marshal(Object obj, Writer w)voidAbstractMarshallerImpl. marshal(Object obj, XMLEventWriter writer)voidAbstractMarshallerImpl. marshal(Object obj, XMLStreamWriter writer)voidAbstractMarshallerImpl. marshal(Object obj, Node node)voidAbstractMarshallerImpl. marshal(Object obj, ContentHandler handler)voidAbstractMarshallerImpl. setEventHandler(ValidationEventHandler handler)voidAbstractUnmarshallerImpl. setEventHandler(ValidationEventHandler handler)Allow an application to register a validation event handler.voidAbstractUnmarshallerImpl. setValidating(boolean validating)Specifies whether or not the Unmarshaller should validate during unmarshal operations.ObjectAbstractUnmarshallerImpl. unmarshal(File f)ObjectAbstractUnmarshallerImpl. unmarshal(InputStream is)ObjectAbstractUnmarshallerImpl. unmarshal(Reader reader)ObjectAbstractUnmarshallerImpl. unmarshal(URL url)ObjectAbstractUnmarshallerImpl. unmarshal(XMLEventReader reader)<T> JAXBElement<T>AbstractUnmarshallerImpl. unmarshal(XMLEventReader reader, Class<T> expectedType)ObjectAbstractUnmarshallerImpl. unmarshal(XMLStreamReader reader)<T> JAXBElement<T>AbstractUnmarshallerImpl. unmarshal(XMLStreamReader reader, Class<T> expectedType)ObjectAbstractUnmarshallerImpl. unmarshal(Source source)<T> JAXBElement<T>AbstractUnmarshallerImpl. unmarshal(Source source, Class<T> expectedType)<T> JAXBElement<T>AbstractUnmarshallerImpl. unmarshal(Node node, Class<T> expectedType)ObjectAbstractUnmarshallerImpl. unmarshal(InputSource source)protected abstract ObjectAbstractUnmarshallerImpl. unmarshal(XMLReader reader, InputSource source)Unmarshals an object by using the specified XMLReader and the InputSource. -
Uses of JAXBException in jakarta.xml.bind.util
Methods in jakarta.xml.bind.util that throw JAXBException Modifier and Type Method Description ObjectJAXBResult. getResult()Gets the unmarshalled object created by the transformation.Constructors in jakarta.xml.bind.util that throw JAXBException Constructor Description JAXBResult(JAXBContext context)Creates a new instance that uses the specified JAXBContext to unmarshal.JAXBResult(Unmarshaller _unmarshaller)Creates a new instance that uses the specified Unmarshaller to unmarshal an object.JAXBSource(JAXBContext context, Object contentObject)Creates a newSourcefor the given content object.JAXBSource(Marshaller marshaller, Object contentObject)Creates a newSourcefor the given content object. -
Uses of JAXBException in org.apache.cxf.common.jaxb
-
Uses of JAXBException in org.apache.cxf.ws.addressing
Methods in org.apache.cxf.ws.addressing that throw JAXBException Modifier and Type Method Description static JAXBContextVersionTransformer. getExposedJAXBContext(String exposedURI)static JAXBContextContextJAXBUtils. getJAXBContext()Retrieve a JAXBContext for marshalling and unmarshalling JAXB generated types.static JAXBContextVersionTransformer.Names200403. getJAXBContext()Retrieve a JAXBContext for marshalling and unmarshalling JAXB generated types for the 2004/08 version.static JAXBContextVersionTransformer.Names200408. getJAXBContext()Retrieve a JAXBContext for marshalling and unmarshalling JAXB generated types for the 2004/08 version.static EndpointReferenceTypeVersionTransformer. parseEndpointReference(Element ref)Parse an EndpointReferenceType from a DOM element.static voidVersionTransformer.Names200403. setJAXBContext(JAXBContext ctx)Set the encapsulated JAXBContext (used by unit tests).static voidVersionTransformer.Names200408. setJAXBContext(JAXBContext ctx)Set the encapsulated JAXBContext (used by unit tests). -
Uses of JAXBException in org.glassfish.jaxb.core.v2.model.core
Methods in org.glassfish.jaxb.core.v2.model.core that throw JAXBException Modifier and Type Method Description voidTypeInfoSet. dump(Result out)Dumps this model into XML. -
Uses of JAXBException in org.glassfish.jaxb.core.v2.runtime
Subclasses of JAXBException in org.glassfish.jaxb.core.v2.runtime Modifier and Type Class Description classIllegalAnnotationExceptionSignals an incorrect use of JAXB annotations. -
Uses of JAXBException in org.glassfish.jaxb.runtime
Methods in org.glassfish.jaxb.runtime that throw JAXBException Modifier and Type Method Description AccessorAccessorFactory. createFieldAccessor(Class bean, Field f, boolean readOnly)Access a field of the class.AccessorInternalAccessorFactory. createFieldAccessor(Class bean, Field f, boolean readOnly, boolean supressWarnings)Access a field of the class.AccessorAccessorFactory. createPropertyAccessor(Class bean, Method getter, Method setter)Access a property of the class. -
Uses of JAXBException in org.glassfish.jaxb.runtime.api
Methods in org.glassfish.jaxb.runtime.api that throw JAXBException Modifier and Type Method Description abstract QNameJAXBRIContext. getElementName(Class o)Allows to retrieve the element name based on Class.abstract QNameJAXBRIContext. getElementName(Object o)If the given object is bound to an element in XML by JAXB, returns the element name.abstract <B,V>
RawAccessor<B,V>JAXBRIContext. getElementPropertyAccessor(Class<B> wrapperBean, String nsUri, String localName)Gets aRawAccessorfor the specified element property of the specified wrapper bean class.abstract voidBridge. marshal(Marshaller m, T object, OutputStream output, NamespaceContext nsContext)abstract voidBridge. marshal(Marshaller m, T object, XMLStreamWriter output)abstract voidBridge. marshal(Marshaller m, T object, Result result)abstract voidBridge. marshal(Marshaller m, T object, Node output)abstract voidBridge. marshal(Marshaller m, T object, ContentHandler contentHandler)voidBridge. marshal(T object, OutputStream output, NamespaceContext nsContext)Marshals the specified type object with the implicit element name associated with this instance of .voidBridge. marshal(T object, OutputStream output, NamespaceContext nsContext, AttachmentMarshaller am)voidBridge. marshal(T object, XMLStreamWriter output)voidBridge. marshal(T object, XMLStreamWriter output, AttachmentMarshaller am)voidBridge. marshal(T object, Result result)voidBridge. marshal(T object, Node output)voidBridge. marshal(T object, ContentHandler contentHandler)voidBridge. marshal(T object, ContentHandler contentHandler, AttachmentMarshaller am)static JAXBRIContextJAXBRIContext. newInstance(Class[] classes, Collection<TypeReference> typeRefs, Map<Class,Class> subclassReplacements, String defaultNamespaceRemap, boolean c14nSupport, RuntimeAnnotationReader ar)Creates a new .static JAXBRIContextJAXBRIContext. newInstance(Class[] classes, Collection<TypeReference> typeRefs, Map<Class,Class> subclassReplacements, String defaultNamespaceRemap, boolean c14nSupport, RuntimeAnnotationReader ar, boolean xmlAccessorFactorySupport, boolean allNillable, boolean retainPropertyInfo, boolean supressAccessorWarnings)Creates a new .abstract TBridge. unmarshal(Unmarshaller u, InputStream in)abstract TBridge. unmarshal(Unmarshaller u, XMLStreamReader in)abstract TBridge. unmarshal(Unmarshaller u, Source in)abstract TBridge. unmarshal(Unmarshaller context, Node n)TBridge. unmarshal(InputStream in)Unmarshals the specified type object.TBridge. unmarshal(XMLStreamReader in)Unmarshals the specified type object.TBridge. unmarshal(XMLStreamReader in, AttachmentUnmarshaller au)TBridge. unmarshal(Source in)Unmarshals the specified type object.TBridge. unmarshal(Source in, AttachmentUnmarshaller au)TBridge. unmarshal(Node n)Unmarshals the specified type object.TBridge. unmarshal(Node n, AttachmentUnmarshaller au) -
Uses of JAXBException in org.glassfish.jaxb.runtime.v2
Methods in org.glassfish.jaxb.runtime.v2 that throw JAXBException Modifier and Type Method Description static JAXBRIContextContextFactory. createContext(Class[] classes, Collection<TypeReference> typeRefs, Map<Class,Class> subclassReplacements, String defaultNsUri, boolean c14nSupport, RuntimeAnnotationReader ar, boolean xmlAccessorFactorySupport, boolean allNillable, boolean retainPropertyInfo)Deprecated.usecreateContext(Class[] classes, Map<String,Object> properties)method insteadstatic JAXBRIContextContextFactory. createContext(Class[] classes, Collection<TypeReference> typeRefs, Map<Class,Class> subclassReplacements, String defaultNsUri, boolean c14nSupport, RuntimeAnnotationReader ar, boolean xmlAccessorFactorySupport, boolean allNillable, boolean retainPropertyInfo, boolean improvedXsiTypeHandling)Deprecated.usecreateContext( Class[] classes, Map<String,Object> properties)method insteadstatic JAXBContextContextFactory. createContext(Class[] classes, Map<String,Object> properties)The API will invoke this method via reflectionstatic JAXBContextContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,Object> properties)The API will invoke this method via reflection.JAXBContextJAXBContextFactory. createContext(Class<?>[] classesToBeBound, Map<String,?> properties)Creates JAXB context.JAXBContextJAXBContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,?> properties)Creates JAXB context. -
Uses of JAXBException in org.glassfish.jaxb.runtime.v2.runtime
Subclasses of JAXBException in org.glassfish.jaxb.runtime.v2.runtime Modifier and Type Class Description classIllegalAnnotationsExceptionA list ofIllegalAnnotationExceptionwrapped in one exception.Methods in org.glassfish.jaxb.runtime.v2.runtime that throw JAXBException Modifier and Type Method Description JAXBContextImplJAXBContextImpl.JAXBContextBuilder. build()voidXMLSerializer. childAsRoot(Object obj)JAXBContextImplJAXBContextImpl. createAugmented(Class<?> clazz)Creates a that includes the specified additional classes.XmlOutputMarshallerImpl. createWriter(OutputStream os)XmlOutputMarshallerImpl. createWriter(OutputStream os, String encoding)<T> JaxBeanInfo<T>JAXBContextImpl. getBeanInfo(Class<T> clazz, boolean fatal)Gets theJaxBeanInfoobject that can handle the given JAXB-bound class.JaxBeanInfoJAXBContextImpl. getBeanInfo(Object o, boolean fatal)Gets theJaxBeanInfoobject that can handle the given JAXB-bound object.QNameJAXBContextImpl. getElementName(Class o)QNameJAXBContextImpl. getElementName(Object o)RawAccessorJAXBContextImpl. getElementPropertyAccessor(Class wrapperBean, String nsUri, String localName)voidBinderImpl. marshal(Object jaxbObject, XmlNode xmlNode)voidMarshallerImpl. marshal(Object obj, OutputStream out, NamespaceContext inscopeNamespace)Marshals toOutputStreamwith the given in-scope namespaces taken into account.voidMarshallerImpl. marshal(Object obj, XMLEventWriter writer)voidMarshallerImpl. marshal(Object obj, XMLStreamWriter writer)voidMarshallerImpl. marshal(Object target, Result result)voidMarshallerImpl. marshal(Object obj, XmlOutput output)voidBinderImpl. setEventHandler(ValidationEventHandler handler)ObjectBinderImpl. unmarshal(XmlNode xmlNode)<T> JAXBElement<T>BinderImpl. unmarshal(XmlNode xmlNode, Class<T> expectedType)ObjectBinderImpl. updateJAXB(XmlNode xmlNode)XmlNodeBinderImpl. updateXML(Object jaxbObject)XmlNodeBinderImpl. updateXML(Object jaxbObject, XmlNode xmlNode)protected <T> voidMarshallerImpl. write(Name rootTagName, JaxBeanInfo<T> bi, T obj, XmlOutput out, Runnable postInitAction)Used byBridgeImplto write an arbitrary object as a fragment. -
Uses of JAXBException in org.glassfish.jaxb.runtime.v2.runtime.reflect
Methods in org.glassfish.jaxb.runtime.v2.runtime.reflect that throw JAXBException Modifier and Type Method Description StringLister.IDREFSIterator. next()EListIterator. next()Works likeIterator.next(). -
Uses of JAXBException in org.glassfish.jaxb.runtime.v2.runtime.unmarshaller
Methods in org.glassfish.jaxb.runtime.v2.runtime.unmarshaller that throw JAXBException Modifier and Type Method Description <T> JaxBeanInfo<T>UnmarshallerImpl. getBeanInfo(Class<T> clazz)ObjectSAXConnector. getResult()protected XMLReaderUnmarshallerImpl. getXMLReader()Obtains a configured XMLReader.ObjectUnmarshallerImpl. unmarshal(XMLEventReader reader)<T> JAXBElement<T>UnmarshallerImpl. unmarshal(XMLEventReader reader, Class<T> expectedType)ObjectUnmarshallerImpl. unmarshal(XMLStreamReader reader)<T> JAXBElement<T>UnmarshallerImpl. unmarshal(XMLStreamReader reader, Class<T> expectedType)ObjectUnmarshallerImpl. unmarshal(SAXSource source)Deprecated.<T> JAXBElement<T>UnmarshallerImpl. unmarshal(Source source, Class<T> expectedType)ObjectUnmarshallerImpl. unmarshal(Node node)<T> JAXBElement<T>UnmarshallerImpl. unmarshal(Node node, Class<T> expectedType)protected ObjectUnmarshallerImpl. unmarshal(XMLReader reader, InputSource source)protected <T> JAXBElement<T>UnmarshallerImpl. unmarshal(XMLReader reader, InputSource source, Class<T> expectedType)ObjectUnmarshallerImpl. unmarshal0(InputStream input, JaxBeanInfo expectedType)ObjectUnmarshallerImpl. unmarshal0(XMLStreamReader reader, JaxBeanInfo expectedType)ObjectUnmarshallerImpl. unmarshal0(Source source, JaxBeanInfo expectedType)ObjectUnmarshallerImpl. unmarshal0(Node node, JaxBeanInfo expectedType) -
Uses of JAXBException in org.jboss.resteasy.plugins.providers.atom
Methods in org.jboss.resteasy.plugins.providers.atom that throw JAXBException Modifier and Type Method Description <T> TEntry. getAnyOtherJAXBObject(Class<T> clazz, Class... otherPossibleClasses)Extract the content as the provided JAXB annotated type.<T> TContent. getJAXBObject(Class<T> clazz, Class... otherPossibleClasses)Extract the content as the provided JAXB annotated type.<T> TText. getJAXBObject(Class<T> clazz, Class... otherPossibleClasses)Extract the content as the provided JAXB annotated type. -
Uses of JAXBException in org.jboss.resteasy.plugins.providers.jaxb
Methods in org.jboss.resteasy.plugins.providers.jaxb that throw JAXBException Modifier and Type Method Description JAXBContextAbstractJAXBContextFinder. createContext(Annotation[] parameterAnnotations, Class... classes)JAXBContextJAXBContextFinder. createContext(Annotation[] parameterAnnotations, Class... classes)protected abstract JAXBContextAbstractJAXBContextFinder. createContextObject(Annotation[] parameterAnnotations, Class... classes)protected abstract JAXBContextAbstractJAXBContextFinder. createContextObject(Annotation[] parameterAnnotations, String contextPath)protected JAXBContextXmlJAXBContextFinder. createContextObject(Annotation[] parameterAnnotations, Class... classes)protected JAXBContextXmlJAXBContextFinder. createContextObject(Annotation[] parameterAnnotations, String contextPath)MarshallerJAXBContextWrapper. createMarshaller()UnmarshallerJAXBContextWrapper. createUnmarshaller()ValidatorJAXBContextWrapper. createValidator()Deprecated.See jakarta.xml.bind.JAXBContext#createValidator().JAXBContextAbstractJAXBContextFinder. createXmlTypeContext(Annotation[] parameterAnnotations, Class... classes)static MarshallerAbstractJAXBProvider. decorateMarshaller(Class type, Annotation[] annotations, MediaType mediaType, Marshaller marshaller)static UnmarshallerAbstractJAXBProvider. decorateUnmarshaller(Class type, Annotation[] annotations, MediaType mediaType, Unmarshaller marshaller)JAXBContextJAXBContextFinder. findCacheContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes)This method creates a JAXBContext from a collection of classes.JAXBContextXmlJAXBContextFinder. findCacheContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes)JAXBContextJAXBContextFinder. findCachedContext(Class type, MediaType mediaType, Annotation[] parameterAnnotations)This method with find a JAXBContext for one type.JAXBContextXmlJAXBContextFinder. findCachedContext(Class type, MediaType mediaType, Annotation[] parameterAnnotations)JAXBContextJAXBContextFinder. findCacheXmlTypeContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes)This method will find a JAXBContext from a set of XmlTypes that use an ObjectFactory for creation (i.e.JAXBContextXmlJAXBContextFinder. findCacheXmlTypeContext(MediaType mediaType, Annotation[] paraAnnotations, Class... classes)JAXBContextAbstractJAXBProvider. findJAXBContext(Class<?> type, Annotation[] annotations, MediaType mediaType, boolean reader)JAXBContextJAXBXmlSeeAlsoProvider. findJAXBContext(Class<?> type, Annotation[] annotations, MediaType mediaType, boolean reader)JAXBContextAbstractJAXBContextFinder. findProvidedJAXBContext(Class<?> type, MediaType mediaType)ValidationEventHandlerSecureUnmarshaller. getEventHandler()ObjectCollectionProvider. getJAXBObject(JAXBContextFinder finder, MediaType mediaType, Class<?> clazz, Element element)ObjectMapProvider. getJAXBObject(JAXBContextFinder finder, MediaType mediaType, Class<?> clazz, Element element)booleanSecureUnmarshaller. isValidating()Deprecated.This method is deprecated as of JAXB 2.0 - please use the newSecureUnmarshaller.getSchema()API.voidBaseMarshaller. marshal(Object o, OutputStream outputStream)protected TAbstractJAXBProvider. processWithSecureProcessing(Unmarshaller unmarshaller, InputStream entityStream, String charset)voidSecureUnmarshaller. setEventHandler(ValidationEventHandler handler)voidSecureUnmarshaller. setValidating(boolean validating)Deprecated.since JAXB2.0, please seeSecureUnmarshaller.getSchema()ObjectSecureUnmarshaller. unmarshal(File f)ObjectSecureUnmarshaller. unmarshal(InputStream is)Turns off expansion of external entities.ObjectSecureUnmarshaller. unmarshal(Reader reader)ObjectSecureUnmarshaller. unmarshal(URL url)ObjectSecureUnmarshaller. unmarshal(XMLEventReader reader)<T> JAXBElement<T>SecureUnmarshaller. unmarshal(XMLEventReader reader, Class<T> declaredType)ObjectSecureUnmarshaller. unmarshal(XMLStreamReader reader)<T> JAXBElement<T>SecureUnmarshaller. unmarshal(XMLStreamReader reader, Class<T> declaredType)ObjectSecureUnmarshaller. unmarshal(Source source)<T> JAXBElement<T>SecureUnmarshaller. unmarshal(Source source, Class<T> declaredType)ObjectSecureUnmarshaller. unmarshal(Node node)<T> JAXBElement<T>SecureUnmarshaller. unmarshal(Node node, Class<T> declaredType)ObjectSecureUnmarshaller. unmarshal(InputSource source)Turns off expansion of external entities.Constructors in org.jboss.resteasy.plugins.providers.jaxb that throw JAXBException Constructor Description JAXBContextWrapper(JAXBContext wrappedContext, JAXBConfig config)JAXBContextWrapper(Class<?>[] classes, Map<String,Object> properties, JAXBConfig config)Create a new JAXBContextWrapper.JAXBContextWrapper(String contextPath, JAXBConfig config)Create a new JAXBContextWrapper.JAXBContextWrapper(JAXBConfig config, Class<?>... classes)Create a new JAXBContextWrapper. -
Uses of JAXBException in org.jboss.resteasy.plugins.providers.jaxb.i18n
Methods in org.jboss.resteasy.plugins.providers.jaxb.i18n that return JAXBException Modifier and Type Method Description JAXBExceptionMessages_$bundle. namespacePrefixMapperNotInClassPath(Throwable cause)JAXBExceptionMessages. namespacePrefixMapperNotInClassPath(Throwable cause)
-