Class XopWithMultipartRelatedReader
- java.lang.Object
-
- org.jboss.resteasy.plugins.providers.multipart.XopWithMultipartRelatedReader
-
- All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyReader<Object>
@Provider @Consumes("multipart/related") public class XopWithMultipartRelatedReader extends Object implements jakarta.ws.rs.ext.MessageBodyReader<Object>
This provider is for reading xop packages packed as multipart/related. For more information seeXopWithMultipartRelated
.- Version:
- $Revision: 1 $
- Author:
- Attila Kiraly
-
-
Field Summary
Fields Modifier and Type Field Description protected jakarta.ws.rs.ext.Providers
workers
-
Constructor Summary
Constructors Constructor Description XopWithMultipartRelatedReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
Object
readFrom(Class<Object> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
-
-
-
Method Detail
-
isReadable
public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
- Specified by:
isReadable
in interfacejakarta.ws.rs.ext.MessageBodyReader<Object>
-
readFrom
public Object readFrom(Class<Object> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream) throws IOException, jakarta.ws.rs.WebApplicationException
- Specified by:
readFrom
in interfacejakarta.ws.rs.ext.MessageBodyReader<Object>
- Throws:
IOException
jakarta.ws.rs.WebApplicationException
-
-