Uses of Class
com.sun.jersey.multipart.MultiPart

Packages that use MultiPart
com.sun.jersey.multipart JAX-RS Integration with MIME MultiPart Message Formats 
com.sun.jersey.multipart.impl   
 

Uses of MultiPart in com.sun.jersey.multipart
 

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

Methods in com.sun.jersey.multipart that return MultiPart
 MultiPart MultiPart.bodyPart(BodyPart bodyPart)
          Builder pattern method to add the specified BodyPart to this MultiPart.
 MultiPart MultiPart.bodyPart(java.lang.Object entity, javax.ws.rs.core.MediaType mediaType)
          Builder pattern method to add a newly configured BodyPart to this MultiPart.
 MultiPart BodyPart.getParent()
          Return the parent MultiPart (if any) for this BodyPart.
 MultiPart MultiPart.type(javax.ws.rs.core.MediaType type)
          Builder pattern method to return this MultiPart after additional configuration.
 

Methods in com.sun.jersey.multipart with parameters of type MultiPart
 void BodyPart.setParent(MultiPart parent)
          Set the parent MultiPart (if any) for this BodyPart.
 

Uses of MultiPart in com.sun.jersey.multipart.impl
 

Methods in com.sun.jersey.multipart.impl that return MultiPart
 MultiPart MultiPartReader.readFrom(java.lang.Class<MultiPart> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> headers, java.io.InputStream stream)
          Read the entire list of body parts from the Input stream, using the appropriate provider implementation to deserialize each body part's entity.
 

Methods in com.sun.jersey.multipart.impl with parameters of type MultiPart
 long MultiPartWriter.getSize(MultiPart entity, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
           
 void MultiPartWriter.writeTo(MultiPart entity, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object> headers, java.io.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 com.sun.jersey.multipart.impl with type arguments of type MultiPart
 MultiPart MultiPartReader.readFrom(java.lang.Class<MultiPart> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> headers, java.io.InputStream stream)
          Read the entire list of body parts from the Input stream, using the appropriate provider implementation to deserialize each body part's entity.
 



Copyright © 2011 Sun Microsystems, Inc. All Rights Reserved.