Class ServerJaxbMessageBodyReader
- java.lang.Object
-
- io.quarkus.resteasy.reactive.jaxb.runtime.serialisers.ServerJaxbMessageBodyReader
-
-
Field Summary
Fields Modifier and Type Field Description (package private) javax.xml.bind.Unmarshallerunmarshaller
-
Constructor Summary
Constructors Constructor Description ServerJaxbMessageBodyReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisReadable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)booleanisReadable(Class<?> type, Type genericType, org.jboss.resteasy.reactive.server.spi.ResteasyReactiveResourceInfo lazyMethod, javax.ws.rs.core.MediaType mediaType)protected booleanisReadable(javax.ws.rs.core.MediaType mediaType, Class<?> type)ObjectreadFrom(Class<Object> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream)ObjectreadFrom(Class<Object> type, Type genericType, javax.ws.rs.core.MediaType mediaType, org.jboss.resteasy.reactive.server.spi.ServerRequestContext context)protected Objectunmarshal(InputStream entityStream, Class<Object> type)
-
-
-
Method Detail
-
readFrom
public Object readFrom(Class<Object> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream) throws javax.ws.rs.WebApplicationException, IOException
- Specified by:
readFromin interfacejavax.ws.rs.ext.MessageBodyReader<Object>- Throws:
javax.ws.rs.WebApplicationExceptionIOException
-
readFrom
public Object readFrom(Class<Object> type, Type genericType, javax.ws.rs.core.MediaType mediaType, org.jboss.resteasy.reactive.server.spi.ServerRequestContext context) throws javax.ws.rs.WebApplicationException, IOException
- Specified by:
readFromin interfaceorg.jboss.resteasy.reactive.server.spi.ServerMessageBodyReader<Object>- Throws:
javax.ws.rs.WebApplicationExceptionIOException
-
isReadable
public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
- Specified by:
isReadablein interfacejavax.ws.rs.ext.MessageBodyReader<Object>
-
isReadable
public boolean isReadable(Class<?> type, Type genericType, org.jboss.resteasy.reactive.server.spi.ResteasyReactiveResourceInfo lazyMethod, javax.ws.rs.core.MediaType mediaType)
- Specified by:
isReadablein interfaceorg.jboss.resteasy.reactive.server.spi.ServerMessageBodyReader<Object>
-
isReadable
protected boolean isReadable(javax.ws.rs.core.MediaType mediaType, Class<?> type)
-
unmarshal
protected Object unmarshal(InputStream entityStream, Class<Object> type)
-
-