Constants
- APPLICATION_FORM_URLENCODED string "application/x-www-form-urlencoded"
- APPLICATION_JSON string "application/json"
- APPLICATION_OCTET_STREAM string "application/octet-stream"
- APPLICATION_PDF string "application/pdf"
- APPLICATION_SOAP_XML string "application/soap+xml"
- APPLICATION_SVG_XML string "application/svg+xml"
- APPLICATION_XHTML_XML string "application/xhtml+xml"
- APPLICATION_XML string "application/xml"
- BOUNDARY string "boundary"
- CHARSET string "charset"
- CONTENT_DISPOSITION string "content-disposition"
- CONTENT_ID string "content-id"
- CONTENT_LENGTH string "content-length"
- CONTENT_TYPE string "content-type"
- DEFAULT_CHARSET string "UTF-8"
- IMAGE_GIF string "image/gif"
- IMAGE_JPEG string "image/jpeg"
- IMAGE_PNG string "image/png"
- MULTIPART_ALTERNATIVE string "multipart/alternative"
- MULTIPART_FORM_DATA string "multipart/form-data"
- MULTIPART_MIXED string "multipart/mixed"
- MULTIPART_PARALLEL string "multipart/parallel"
- MULTIPART_RELATED string "multipart/related"
- START string "start"
- TEXT_HTML string "text/html"
- TEXT_PLAIN string "text/plain"
- TEXT_XML string "text/xml"
- TYPE string "type"
Represents the application/x-www-form-urlencoded
media type.
Represents the application/json
media type.
Represents the application/octet-stream
media type.
Represents the application/pdf
media type.
Represents the application/soap+xml
media type.
Represents the application/svg+xml
media type.
Represents the application/xhtml+xml
media type.
Represents the application/xml
media type.
Key name for boundary
parameter in MediaType. This is needed for composite type media types.
Key name for charset
parameter in MediaType. This indicates the character set of the body text.
Represents content-disposition
header name.
Represents content-id
header name.
Represents content-length
header name.
Represents content-type
header name.
Default charset to be used with MIME encoding and decoding.
Represents the image/gif
media type.
Represents the image/jpeg
media type.
Represents the image/png
media type.
Represents the multipart/alternative
media type.
Represents the multipart/form-data
media type.
Represents the multipart/mixed
media type.
Represents the multipart/parallel
media type.
Represents the multipart/related
media type.
Key name for start
parameter in MediaType. This determines which part in the multipart message contains the
payload.
Represents the text/html
media type.
Represents the text/plain
media type.
Represents the text/xml
media type.
Key name for type
parameter in MediaType. This indicates the MIME media type of the root
body part.