Uses of Class
org.glassfish.jersey.media.multipart.MultiPart

Packages that use MultiPart
org.glassfish.jersey.media.multipart JAX-RS Integration with MIME MultiPart Message Formats 
org.glassfish.jersey.media.multipart.internal   
 

Uses of MultiPart in org.glassfish.jersey.media.multipart
 

Subclasses of MultiPart in org.glassfish.jersey.media.multipart
 class FormDataMultiPart
          Subclass of MultiPart with specialized support for media type multipart/form-data.
 

Methods in org.glassfish.jersey.media.multipart that return MultiPart
 MultiPart MultiPart.bodyPart(BodyPart bodyPart)
          Builder pattern method to add the specified BodyPart to this MultiPart.
 MultiPart MultiPart.bodyPart(Object entity, MediaType mediaType)
          Builder pattern method to add a newly configured BodyPart to this MultiPart.
 MultiPart BodyPart.getParent()
          Returns the parent MultiPart (if any) for this BodyPart.
 MultiPart MultiPart.type(MediaType type)
          Builder pattern method to return this MultiPart after additional configuration.
 

Methods in org.glassfish.jersey.media.multipart with parameters of type MultiPart
 void BodyPart.setParent(MultiPart parent)
          Sets the parent MultiPart (if any) for this BodyPart.
 

Uses of MultiPart in org.glassfish.jersey.media.multipart.internal
 

Methods in org.glassfish.jersey.media.multipart.internal that return MultiPart
 MultiPart MultiPartReaderClientSide.readFrom(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
          Reads the entire list of body parts from the Input stream, using the appropriate provider implementation to deserialize each body part's entity.
protected  MultiPart MultiPartReaderServerSide.readMultiPart(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
protected  MultiPart MultiPartReaderClientSide.readMultiPart(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 

Methods in org.glassfish.jersey.media.multipart.internal with parameters of type MultiPart
 long MultiPartWriter.getSize(MultiPart entity, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType)
           
 void MultiPartWriter.writeTo(MultiPart entity, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
          Write the entire list of body parts to the output stream, using the appropriate provider implementation to serialize each body part's entity.
 

Method parameters in org.glassfish.jersey.media.multipart.internal with type arguments of type MultiPart
 MultiPart MultiPartReaderClientSide.readFrom(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
          Reads the entire list of body parts from the Input stream, using the appropriate provider implementation to deserialize each body part's entity.
protected  MultiPart MultiPartReaderServerSide.readMultiPart(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
protected  MultiPart MultiPartReaderClientSide.readMultiPart(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 



Copyright © 2007-2013 Oracle Corporation. All Rights Reserved. Use is subject to license terms.