Home | History | Annotate | Download | only in header

Lines Matching refs:encoding

34  * Content encoding part of a content encoding header list.
38 *14.11 Content-Encoding
40 * The Content-Encoding entity-header field is used as a modifier to the
44 * referenced by the Content-Type header field. Content-Encoding is
48 * Content-Encoding = "Content-Encoding" ":" 1#content-coding
52 * Content-Encoding: gzip
56 * encoding and is only decoded before rendering or analogous usage.
62 * response MUST include a Content-Encoding entity-header (section
71 * Additional information about the encoding parameters MAY be provided
110 * Canonical encoding of body of the header.
127 * @param encoding String to set
129 public void setEncoding(String encoding) throws ParseException {
130 if (encoding == null)
132 "JAIN-SIP Exception, " + " encoding is null");
133 contentEncoding = encoding;