org.jboss.resteasy.plugins.providers.multipart
Class MimeMultipartProvider

java.lang.Object
  extended by org.jboss.resteasy.plugins.providers.AbstractEntityProvider<javax.mail.internet.MimeMultipart>
      extended by org.jboss.resteasy.plugins.providers.multipart.MimeMultipartProvider
All Implemented Interfaces:
MessageBodyReader<javax.mail.internet.MimeMultipart>, MessageBodyWriter<javax.mail.internet.MimeMultipart>

@Provider
public class MimeMultipartProvider
extends AbstractEntityProvider<javax.mail.internet.MimeMultipart>

A provider to handle multipart representations. This implementation will be invoked when a method parameter takes a MimeMultipart as a method parameter or a return value and the

Author:
Ryan J. McDonough

Constructor Summary
MimeMultipartProvider()
           
 
Method Summary
 boolean isReadable(java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Ascertain if the MessageBodyReader can produce an instance of a particular type.
 boolean isWriteable(java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Ascertain if the MessageBodyWriter supports a particular type.
static javax.activation.DataSource readDataSource(java.io.InputStream in, MediaType mediaType)
           
 javax.mail.internet.MimeMultipart readFrom(java.lang.Class<javax.mail.internet.MimeMultipart> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, java.io.InputStream entityStream)
          FIXME Comment this
 void writeTo(javax.mail.internet.MimeMultipart mimeMultipart, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
          FIXME Comment this
 
Methods inherited from class org.jboss.resteasy.plugins.providers.AbstractEntityProvider
getSize
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MimeMultipartProvider

public MimeMultipartProvider()
Method Detail

readDataSource

public static javax.activation.DataSource readDataSource(java.io.InputStream in,
                                                         MediaType mediaType)
                                                  throws java.io.IOException
Parameters:
in -
mediaType -
Returns:
Throws:
java.io.IOException

isReadable

public boolean isReadable(java.lang.Class<?> type,
                          java.lang.reflect.Type genericType,
                          java.lang.annotation.Annotation[] annotations,
                          MediaType mediaType)
Description copied from interface: MessageBodyReader
Ascertain if the MessageBodyReader can produce an instance of a particular type.

Parameters:
type -
genericType -
annotations -
mediaType - the media type of the HTTP entity.
Returns:

isWriteable

public boolean isWriteable(java.lang.Class<?> type,
                           java.lang.reflect.Type genericType,
                           java.lang.annotation.Annotation[] annotations,
                           MediaType mediaType)
Description copied from interface: MessageBodyWriter
Ascertain if the MessageBodyWriter supports a particular type.

Parameters:
type -
genericType -
annotations -
mediaType - the media type of the HTTP entity.
Returns:

readFrom

public javax.mail.internet.MimeMultipart readFrom(java.lang.Class<javax.mail.internet.MimeMultipart> type,
                                                  java.lang.reflect.Type genericType,
                                                  java.lang.annotation.Annotation[] annotations,
                                                  MediaType mediaType,
                                                  MultivaluedMap<java.lang.String,java.lang.String> httpHeaders,
                                                  java.io.InputStream entityStream)
                                           throws java.io.IOException
FIXME Comment this

Parameters:
type -
genericType -
annotations -
mediaType -
httpHeaders -
entityStream -
Returns:
Throws:
java.io.IOException
WebApplicationException
See Also:
javax.ws.rs.ext.MessageBodyReader#readFrom(java.lang.Class, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap, java.io.InputStream)

writeTo

public void writeTo(javax.mail.internet.MimeMultipart mimeMultipart,
                    java.lang.Class<?> type,
                    java.lang.reflect.Type genericType,
                    java.lang.annotation.Annotation[] annotations,
                    MediaType mediaType,
                    MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders,
                    java.io.OutputStream entityStream)
             throws java.io.IOException
FIXME Comment this

Parameters:
mimeMultipart -
type -
genericType -
annotations -
mediaType -
httpHeaders -
entityStream -
Throws:
java.io.IOException
See Also:
javax.ws.rs.ext.MessageBodyWriter#writeTo(java.lang.Object, java.lang.Class, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap, java.io.OutputStream)


Copyright © 2009. All Rights Reserved.