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

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

Uses of BodyPart in com.sun.jersey.multipart
 

Subclasses of BodyPart in com.sun.jersey.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 com.sun.jersey.multipart that return BodyPart
 BodyPart BodyPart.contentDisposition(ContentDisposition cd)
           
 BodyPart MultiPart.entity(Object entity)
          Override the entity set operation on a MultiPart to throw IllegalArgumentException.
 BodyPart BodyPart.entity(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 com.sun.jersey.multipart that return types with arguments of type BodyPart
 List<BodyPart> MultiPart.getBodyParts()
          Return a mutable list of BodyParts nested in this MultiPart.
 

Methods in com.sun.jersey.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 com.sun.jersey.multipart.file
 

Subclasses of BodyPart in com.sun.jersey.multipart.file
 class FileDataBodyPart
          An extension of FormDataBodyPart for associating File File as a body part entity.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.