Home | History | Annotate | Download | only in params

Lines Matching refs:charset

56      * Obtains the charset for encoding
62 * @return The charset
70 String charset = (String) params.getParameter
74 if (charset == null) {
75 charset = HTTP.DEFAULT_PROTOCOL_CHARSET;
77 return charset;
82 * Sets the charset to be used when encoding
85 * @param charset The charset
87 public static void setCredentialCharset(final HttpParams params, final String charset) {
91 params.setParameter(AuthPNames.CREDENTIAL_CHARSET, charset);