Class JAXBElementProvider

  • All Implemented Interfaces:
    jakarta.ws.rs.ext.MessageBodyReader<jakarta.xml.bind.JAXBElement<?>>, jakarta.ws.rs.ext.MessageBodyWriter<jakarta.xml.bind.JAXBElement<?>>, AsyncBufferedMessageBodyWriter<jakarta.xml.bind.JAXBElement<?>>, AsyncMessageBodyWriter<jakarta.xml.bind.JAXBElement<?>>
    Direct Known Subclasses:
    FastinfoSetElementProvider

    @Provider
    @Produces({"application/xml","application/*+xml","text/xml","text/*+xml"})
    @Consumes({"application/xml","application/*+xml","text/xml","text/*+xml"})
    public class JAXBElementProvider
    extends AbstractJAXBProvider<jakarta.xml.bind.JAXBElement<?>>

    A JAXB Provider which handles parameter and return types of JAXBElement. This provider will be selected when the resource is declared as:

    @POST
    @Consumes("applictaion/xml")
    @Produces("applictaion/xml")
    public JAXBElement<Contact> getContact(JAXBElement<Contact> value);
    Version:
    $Revision:$
    Author:
    Ryan J. McDonough
    • Constructor Detail

      • JAXBElementProvider

        public JAXBElementProvider()
    • Method Detail

      • readFrom

        public jakarta.xml.bind.JAXBElement<?> readFrom​(Class<jakarta.xml.bind.JAXBElement<?>> type,
                                                        Type genericType,
                                                        Annotation[] annotations,
                                                        jakarta.ws.rs.core.MediaType mediaType,
                                                        jakarta.ws.rs.core.MultivaluedMap<String,​String> httpHeaders,
                                                        InputStream entityStream)
                                                 throws IOException
        Specified by:
        readFrom in interface jakarta.ws.rs.ext.MessageBodyReader<jakarta.xml.bind.JAXBElement<?>>
        Overrides:
        readFrom in class AbstractJAXBProvider<jakarta.xml.bind.JAXBElement<?>>
        Throws:
        IOException
      • writeTo

        public void writeTo​(jakarta.xml.bind.JAXBElement<?> t,
                            Class<?> type,
                            Type genericType,
                            Annotation[] annotations,
                            jakarta.ws.rs.core.MediaType mediaType,
                            jakarta.ws.rs.core.MultivaluedMap<String,​Object> httpHeaders,
                            OutputStream outputStream)
                     throws IOException
        Specified by:
        writeTo in interface jakarta.ws.rs.ext.MessageBodyWriter<jakarta.xml.bind.JAXBElement<?>>
        Overrides:
        writeTo in class AbstractJAXBProvider<jakarta.xml.bind.JAXBElement<?>>
        Throws:
        IOException
      • asyncWriteTo

        public CompletionStage<Void> asyncWriteTo​(jakarta.xml.bind.JAXBElement<?> t,
                                                  Class<?> type,
                                                  Type genericType,
                                                  Annotation[] annotations,
                                                  jakarta.ws.rs.core.MediaType mediaType,
                                                  jakarta.ws.rs.core.MultivaluedMap<String,​Object> httpHeaders,
                                                  AsyncOutputStream outputStream)
        Description copied from interface: AsyncMessageBodyWriter
        Write a type to an HTTP message using async IO. The message header map is mutable but any changes must be made before writing to the async output stream since the headers will be flushed prior to writing the message body.
        Parameters:
        t - the instance to write.
        type - the class of instance that is to be written.
        genericType - the type of instance to be written. GenericEntity provides a way to specify this information at runtime.
        annotations - an array of the annotations attached to the message entity instance.
        mediaType - the media type of the HTTP entity.
        httpHeaders - a mutable map of the HTTP message headers.
        outputStream - the AsyncOutputStream for the HTTP entity. The implementation should not close the output stream.
        Returns:
        a CompletionStage indicating completion