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

Packages that use BodyPart
org.glassfish.jersey.media.multipart JAX-RS Integration with MIME MultiPart Message Formats 
org.glassfish.jersey.media.multipart.file Provides support for body parts that are file attachments. 
 

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

Subclasses of BodyPart in org.glassfish.jersey.media.multipart
 class FormDataBodyPart
          Subclass of BodyPart with specialized support for media type multipart/form-data.
 class FormDataMultiPart
          Subclass of MultiPart with specialized support for media type multipart/form-data.
 class MultiPart
          A mutable model representing a MIME MultiPart entity.
 

Methods in org.glassfish.jersey.media.multipart that return BodyPart
 BodyPart BodyPart.contentDisposition(ContentDisposition contentDisposition)
          Builder pattern method to return this BodyPart after additional configuration.
 BodyPart MultiPart.entity(java.lang.Object entity)
          Override the entity set operation on a MultiPart to throw IllegalArgumentException.
 BodyPart BodyPart.entity(java.lang.Object entity)
          Builder pattern method to return this BodyPart after additional configuration.
 BodyPart BodyPart.type(MediaType type)
          Builder pattern method to return this BodyPart after additional configuration.
 

Methods in org.glassfish.jersey.media.multipart that return types with arguments of type BodyPart
 java.util.List<BodyPart> MultiPart.getBodyParts()
          Return a mutable list of BodyParts nested in this MultiPart.
 

Methods in org.glassfish.jersey.media.multipart with parameters of type BodyPart
 MultiPart MultiPart.bodyPart(BodyPart bodyPart)
          Builder pattern method to add the specified BodyPart to this MultiPart.
 

Uses of BodyPart in org.glassfish.jersey.media.multipart.file
 

Subclasses of BodyPart in org.glassfish.jersey.media.multipart.file
 class FileDataBodyPart
          An extension of FormDataBodyPart for associating File File as a body part entity.
 class StreamDataBodyPart
          Represents an InputStream based file submission as a part of the multipart/form-data.
 



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