Uses of Class
jakarta.xml.bind.JAXBContext
-
Packages that use JAXBContext Package Description jakarta.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.jakarta.xml.bind.util Useful client utility classes.jakarta.xml.ws This package contains the core Jakarta XML Web Services APIs.jakarta.xml.ws.handler.soap This package defines APIs for SOAP message handlers.jakarta.xml.ws.spi This package defines SPIs for Jakarta XML Web Services. -
-
Uses of JAXBContext in jakarta.xml.bind
Methods in jakarta.xml.bind that return JAXBContext Modifier and Type Method Description JAXBContext
JAXBContextFactory. createContext(Class<?>[] classesToBeBound, Map<String,?> properties)
Create a new instance of aJAXBContext
class.JAXBContext
JAXBContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,?> properties)
Create a new instance of aJAXBContext
class.static JAXBContext
JAXBContext. newInstance(Class<?>... classesToBeBound)
Create a new instance of aJAXBContext
class.static JAXBContext
JAXBContext. newInstance(Class<?>[] classesToBeBound, Map<String,?> properties)
Create a new instance of aJAXBContext
class.static JAXBContext
JAXBContext. newInstance(String contextPath)
Create a new instance of aJAXBContext
class.static JAXBContext
JAXBContext. newInstance(String contextPath, ClassLoader classLoader)
Create a new instance of aJAXBContext
class.static JAXBContext
JAXBContext. newInstance(String contextPath, ClassLoader classLoader, Map<String,?> properties)
Create a new instance of aJAXBContext
class. -
Uses of JAXBContext in jakarta.xml.bind.util
Constructors in jakarta.xml.bind.util with parameters of type JAXBContext Constructor Description JAXBResult(JAXBContext context)
Creates a new instance that uses the specified JAXBContext to unmarshal.JAXBSource(JAXBContext context, Object contentObject)
Creates a newSource
for the given content object. -
Uses of JAXBContext in jakarta.xml.ws
Methods in jakarta.xml.ws with parameters of type JAXBContext Modifier and Type Method Description Dispatch<Object>
Service. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.Dispatch<Object>
Service. createDispatch(QName portName, JAXBContext context, Service.Mode mode)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.Dispatch<Object>
Service. createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.Object
LogicalMessage. getPayload(JAXBContext context)
Gets the message payload as a Jakarta XML Binding object.void
LogicalMessage. setPayload(Object payload, JAXBContext context)
Sets the message payload -
Uses of JAXBContext in jakarta.xml.ws.handler.soap
Methods in jakarta.xml.ws.handler.soap with parameters of type JAXBContext Modifier and Type Method Description Object[]
SOAPMessageContext. getHeaders(QName header, JAXBContext context, boolean allRoles)
Gets headers that have a particular qualified name from the message in the message context. -
Uses of JAXBContext in jakarta.xml.ws.spi
Methods in jakarta.xml.ws.spi with parameters of type JAXBContext Modifier and Type Method Description abstract Dispatch<Object>
ServiceDelegate. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.abstract Dispatch<Object>
ServiceDelegate. createDispatch(QName portName, JAXBContext context, Service.Mode mode)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.abstract Dispatch<Object>
ServiceDelegate. createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with Jakarta XML Binding generated objects.
-