B C E F G I M S T

B

BodyPart - Class in com.sun.jersey.multipart
A mutable model representing a body part nested inside a MIME MultiPart entity.
BodyPart() - Constructor for class com.sun.jersey.multipart.BodyPart
Instantiate a new BodyPart with a mediaType of text/plain.
BodyPart(MediaType) - Constructor for class com.sun.jersey.multipart.BodyPart
Instantiate a new BodyPart with the specified characteristics.
BodyPart(Object, MediaType) - Constructor for class com.sun.jersey.multipart.BodyPart
Instantiate a new BodyPart with the specified characteristics.
bodyPart(BodyPart) - Method in class com.sun.jersey.multipart.MultiPart
Builder pattern method to add the specified BodyPart to this MultiPart.
bodyPart(Object, MediaType) - Method in class com.sun.jersey.multipart.MultiPart
Builder pattern method to add a newly configured BodyPart to this MultiPart.
BodyPartEntity - Class in com.sun.jersey.multipart
Proxy class representing the entity of a BodyPart when a MultiPart entity is received and parsed.
BodyPartEntity(InputStream) - Constructor for class com.sun.jersey.multipart.BodyPartEntity
Construct a new BodyPartEntity with a default threshold size.
BodyPartEntity(InputStream, int) - Constructor for class com.sun.jersey.multipart.BodyPartEntity
Construct a new BodyPartEntity with a specified threshold size.
BUFFER_THRESHOLD_NAME - Static variable in class com.sun.jersey.multipart.MultiPartConfig
Name of the resource property for the bufferThreshold property.

C

cleanup() - Method in class com.sun.jersey.multipart.BodyPart
Perform any necessary cleanup at the end of processing this BodyPart.
cleanup() - Method in class com.sun.jersey.multipart.BodyPartEntity
Clean up the temporary file we used, if any.
cleanup() - Method in class com.sun.jersey.multipart.MultiPart
Perform any necessary cleanup at the end of processing this MultiPart.
com.sun.jersey.multipart - package com.sun.jersey.multipart
JAX-RS Integration with MIME MultiPart Message Formats

E

entity(Object) - Method in class com.sun.jersey.multipart.BodyPart
Builder pattern method to return this BodyPart after additional configuration.
entity(Object) - Method in class com.sun.jersey.multipart.MultiPart
Override the entity set operation on a MultiPart to throw IllegalArgumentException.

F

field(String, String) - Method in class com.sun.jersey.multipart.FormDataMultiPart
Builder pattern method to add a named field with a text value, and return this instance.
field(String, Object, MediaType) - Method in class com.sun.jersey.multipart.FormDataMultiPart
Builder pattern method to add a named field with an arbitrary media type and entity, and return this instance.
FormDataBodyPart - Class in com.sun.jersey.multipart
Subclass of BodyPart with specialized support for media type multipart/form-data.
FormDataBodyPart() - Constructor for class com.sun.jersey.multipart.FormDataBodyPart
Instantiate an unnamed new FormDataBodyPart with a mediaType of text/plain.
FormDataBodyPart(MediaType) - Constructor for class com.sun.jersey.multipart.FormDataBodyPart
Instantiate an unnamed FormDataBodyPart with the specified characteristics.
FormDataBodyPart(Object, MediaType) - Constructor for class com.sun.jersey.multipart.FormDataBodyPart
Instantiate an unnamed FormDataBodyPart with the specified characteristics.
FormDataBodyPart(String, String) - Constructor for class com.sun.jersey.multipart.FormDataBodyPart
Instantiate a named FormDataBodyPart with a media type of text/plain and String value.
FormDataBodyPart(String, Object, MediaType) - Constructor for class com.sun.jersey.multipart.FormDataBodyPart
Instantiate a named FormDataBodyPart with the specified characteristics.
FormDataMultiPart - Class in com.sun.jersey.multipart
Subclass of MultiPart with specialized support for media type multipart/form-data.
FormDataMultiPart() - Constructor for class com.sun.jersey.multipart.FormDataMultiPart
Instantiate a new FormDataMultiPart instance with default characteristics.

G

getBodyParts() - Method in class com.sun.jersey.multipart.MultiPart
Return a mutable list of BodyParts nested in this MultiPart.
getBufferThreshold() - Method in class com.sun.jersey.multipart.MultiPartConfig
Return the size (in bytes) of the entity of an incoming BodyPart before it will be buffered to disk.
getEntity() - Method in class com.sun.jersey.multipart.BodyPart
Return the entity object to be unmarshalled from a request, or to be marshalled on a response.
getEntity() - Method in class com.sun.jersey.multipart.MultiPart
Disable access to the entity for a MultiPart.
getEntityAs(Class<T>) - Method in class com.sun.jersey.multipart.BodyPart
Return the entity after appropriate conversion to the requested type.
getField(String) - Method in class com.sun.jersey.multipart.FormDataMultiPart
Return the FormDataBodyPart for the specified field name, if any; otherwise, return null.
getFields() - Method in class com.sun.jersey.multipart.FormDataMultiPart
Return an immutable Map of the FormDataBodyParts for all fields, keyed by field name.
getHeaders() - Method in class com.sun.jersey.multipart.BodyPart
Return a mutable map of HTTP header value(s) for this BodyPart, keyed by the header name.
getInputStream() - Method in class com.sun.jersey.multipart.BodyPartEntity
Return an input stream to the raw bytes of this body part entity.
getMediaType() - Method in class com.sun.jersey.multipart.BodyPart
Return the MediaType for this BodyPart.
getName() - Method in class com.sun.jersey.multipart.FormDataBodyPart
Return the field name for this body part, or null if no name has been established yet.
getParameterizedHeaders() - Method in class com.sun.jersey.multipart.BodyPart
Return an immutable map of parameterized HTTP header value(s) for this BodyPart, keyed by header name.
getParent() - Method in class com.sun.jersey.multipart.BodyPart
Return the parent MultiPart (if any) for this BodyPart.
getProviders() - Method in class com.sun.jersey.multipart.BodyPart
Return the configured Providers for this BodyPart.
getValue() - Method in class com.sun.jersey.multipart.FormDataBodyPart
Return the field value for this body part.
getValueAs(Class<T>) - Method in class com.sun.jersey.multipart.FormDataBodyPart
Return the field value after appropriate conversion to the requested type.

I

isSimple() - Method in class com.sun.jersey.multipart.FormDataBodyPart
Return a flag indicating whether this FormDataBodyPart represents a simple String-valued field.

M

MULTI_PART_CONFIG_RESOURCE - Static variable in class com.sun.jersey.multipart.MultiPartConfig
Name of a properties resource that (if found in the classpath for this application) will be used to configure the settings returned by our getter methods.
MultiPart - Class in com.sun.jersey.multipart
A mutable model representing a MIME MultiPart entity.
MultiPart() - Constructor for class com.sun.jersey.multipart.MultiPart
Instantiate a new MultiPart with a mediaType of multipart/mixed.
MultiPart(MediaType) - Constructor for class com.sun.jersey.multipart.MultiPart
Instantiate a new MultiPart with the specified characteristics.
MULTIPART_ALTERNATIVE - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/alternative"
MULTIPART_ALTERNATIVE_TYPE - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/alternative"
MULTIPART_DIGEST - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/digest"
MULTIPART_DIGEST_TYPE - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/digest"
MULTIPART_MIXED - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/mixed"
MULTIPART_MIXED_TYPE - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/mixed"
MULTIPART_PARALLEL - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/parallel"
MULTIPART_PARELLEL_TYPE - Static variable in class com.sun.jersey.multipart.MultiPartMediaTypes
"multipart/parallel"
MultiPartConfig - Class in com.sun.jersey.multipart
Injectable JavaBean containing the configuration parameters for jersey-multipart as used in this particular application.
MultiPartConfig() - Constructor for class com.sun.jersey.multipart.MultiPartConfig
Load and customize (if necessary) the configuration values for the jersey-multipart module.
MultiPartMediaTypes - Class in com.sun.jersey.multipart
Convenience MediaType (and associated String) manifest constants.
MultiPartMediaTypes() - Constructor for class com.sun.jersey.multipart.MultiPartMediaTypes
 

S

setEntity(Object) - Method in class com.sun.jersey.multipart.BodyPart
Set the entity object to be unmarshalled from a request, or to be marshalled on a response.
setEntity(Object) - Method in class com.sun.jersey.multipart.MultiPart
Disable access to the entity for a MultiPart.
setMediaType(MediaType) - Method in class com.sun.jersey.multipart.BodyPart
Set the MediaType for this BodyPart.
setMediaType(MediaType) - Method in class com.sun.jersey.multipart.FormDataMultiPart
Disable changing the media type to anything other than multipart/form-data.
setMediaType(MediaType) - Method in class com.sun.jersey.multipart.MultiPart
Set the MediaType for this MultiPart.
setName(String) - Method in class com.sun.jersey.multipart.FormDataBodyPart
Set the field name for this body part.
setParent(MultiPart) - Method in class com.sun.jersey.multipart.BodyPart
Set the parent MultiPart (if any) for this BodyPart.
setProviders(Providers) - Method in class com.sun.jersey.multipart.BodyPart
Set the configured Providers for this BodyPart.
setValue(String) - Method in class com.sun.jersey.multipart.FormDataBodyPart
Set the field value for this body part.
setValue(MediaType, Object) - Method in class com.sun.jersey.multipart.FormDataBodyPart
Set the field media type and value for this body part.

T

type(MediaType) - Method in class com.sun.jersey.multipart.BodyPart
Builder pattern method to return this BodyPart after additional configuration.
type(MediaType) - Method in class com.sun.jersey.multipart.MultiPart
Builder pattern method to return this MultiPart after additional configuration.

B C E F G I M S T

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