Home | History | Annotate | Download | only in auth

Lines Matching refs:scheme

39  * a port number, a realm name and an authentication scheme name which 
66 * The <tt>null</tt> value represents any authentication scheme.
71 * Default scope matching any host, port, realm and authentication scheme.
77 /** The authentication scheme the credentials apply to. */
78 private final String scheme;
91 * <tt>authentication scheme</tt>.
102 * @param scheme the authentication scheme the credentials apply to.
104 * any authentication scheme.
107 final String realm, final String scheme)
112 this.scheme = (scheme == null) ? ANY_SCHEME: scheme.toUpperCase(Locale.ENGLISH);
117 * authentication scheme.
135 * authentication scheme.
159 this.scheme = authscope.getScheme();
184 * @return the scheme type
187 return this.scheme;
199 if (LangUtils.equals(this.scheme, that.scheme)) {
202 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) {
249 && LangUtils.equals(this.scheme, that.scheme);
258 if (this.scheme != null) {
259 buffer.append(this.scheme.toUpperCase(Locale.ENGLISH));
289 hash = LangUtils.hashCode(hash, this.scheme);