Home | History | Annotate | Download | only in okhttp

Lines Matching defs:scheme

22   private final String scheme;
25 public Challenge(String scheme, String realm) {
26 this.scheme = scheme;
30 /** Returns the authentication scheme, like {@code Basic}. */
32 return scheme;
42 && equal(scheme, ((Challenge) o).scheme)
49 result = 31 * result + (scheme != null ? scheme.hashCode() : 0);
54 return scheme + " realm=\"" + realm + "\"";