Class MultipartFormAnnotationReader
- java.lang.Object
 - 
- org.jboss.resteasy.plugins.providers.multipart.MultipartFormAnnotationReader
 
 
- 
- All Implemented Interfaces:
 javax.ws.rs.ext.MessageBodyReader<Object>
@Provider @Consumes("multipart/form-data") public class MultipartFormAnnotationReader extends Object implements javax.ws.rs.ext.MessageBodyReader<Object>- Version:
 - $Revision: 1 $
 - Author:
 - Bill Burke
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected javax.ws.rs.ext.Providersworkers 
- 
Constructor Summary
Constructors Constructor Description MultipartFormAnnotationReader() 
- 
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)ObjectreadFrom(Class<Object> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream)protected booleansetFields(Class<?> type, MultipartFormDataInputImpl input, Object obj) 
 - 
 
- 
- 
Method Detail
- 
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>
 
- 
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 IOException, javax.ws.rs.WebApplicationException
- Specified by:
 readFromin interfacejavax.ws.rs.ext.MessageBodyReader<Object>- Throws:
 IOExceptionjavax.ws.rs.WebApplicationException
 
- 
setFields
protected boolean setFields(Class<?> type, MultipartFormDataInputImpl input, Object obj) throws IOException
- Throws:
 IOException
 
 - 
 
 -