Package | Description |
---|---|
jakarta.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service resources.
|
jakarta.xml.bind |
Provides a runtime binding framework for client applications including
unmarshalling, marshalling, and validation capabilities.
|
jakarta.xml.bind.annotation.adapters |
XmlAdapter and its spec-defined
sub-classes to allow arbitrary Java classes to be used with Jakarta XML Binding. |
jakarta.xml.bind.helpers |
Jakarta XML Binding Provider Use Only: Provides partial default implementations for
some of the
jakarta.xml.bind interfaces. |
Modifier and Type | Class and Description |
---|---|
static class |
Link.JaxbAdapter
An implementation of JAXB
XmlAdapter that maps the JAX-RS
Link type to a value that can be marshalled and unmarshalled by JAXB. |
Modifier and Type | Method and Description |
---|---|
<A extends XmlAdapter> |
Unmarshaller.getAdapter(Class<A> type)
Gets the adapter associated with the specified type.
|
<A extends XmlAdapter> |
Marshaller.getAdapter(Class<A> type)
Gets the adapter associated with the specified type.
|
<A extends XmlAdapter> |
Unmarshaller.setAdapter(Class<A> type,
A adapter)
Associates a configured instance of
XmlAdapter with this unmarshaller. |
<A extends XmlAdapter> |
Marshaller.setAdapter(Class<A> type,
A adapter)
Associates a configured instance of
XmlAdapter with this marshaller. |
Modifier and Type | Method and Description |
---|---|
void |
Unmarshaller.setAdapter(XmlAdapter adapter)
Associates a configured instance of
XmlAdapter with this unmarshaller. |
void |
Marshaller.setAdapter(XmlAdapter adapter)
Associates a configured instance of
XmlAdapter with this marshaller. |
Modifier and Type | Class and Description |
---|---|
class |
CollapsedStringAdapter
Built-in
XmlAdapter to handle xs:token and its derived types. |
class |
HexBinaryAdapter
XmlAdapter for xs:hexBinary . |
class |
NormalizedStringAdapter
XmlAdapter to handle xs:normalizedString . |
Modifier and Type | Method and Description |
---|---|
<A extends XmlAdapter> |
AbstractUnmarshallerImpl.getAdapter(Class<A> type) |
<A extends XmlAdapter> |
AbstractMarshallerImpl.getAdapter(Class<A> type) |
<A extends XmlAdapter> |
AbstractUnmarshallerImpl.setAdapter(Class<A> type,
A adapter) |
<A extends XmlAdapter> |
AbstractMarshallerImpl.setAdapter(Class<A> type,
A adapter) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractUnmarshallerImpl.setAdapter(XmlAdapter adapter) |
void |
AbstractMarshallerImpl.setAdapter(XmlAdapter adapter) |
Copyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.