HomeSort by relevance Sort by last modified time
    Searched refs:AuthSchemeFactory (Results 1 - 4 of 4) sorted by null

  /external/apache-http/src/org/apache/http/impl/auth/
BasicSchemeFactory.java 35 import org.apache.http.auth.AuthSchemeFactory;
49 public class BasicSchemeFactory implements AuthSchemeFactory {
DigestSchemeFactory.java 35 import org.apache.http.auth.AuthSchemeFactory;
49 public class DigestSchemeFactory implements AuthSchemeFactory {
  /external/apache-http/src/org/apache/http/auth/
AuthSchemeFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthSchemeFactory.java $
47 public interface AuthSchemeFactory {
AuthSchemeRegistry.java 58 private final Map<String,AuthSchemeFactory> registeredSchemes;
62 this.registeredSchemes = new LinkedHashMap<String,AuthSchemeFactory>();
66 * Registers a {@link AuthSchemeFactory} with the given identifier. If a factory with the
76 * @param factory the {@link AuthSchemeFactory} class to register
82 final AuthSchemeFactory factory) {
122 AuthSchemeFactory factory = registeredSchemes.get(name.toLowerCase(Locale.ENGLISH));
146 public synchronized void setItems(final Map<String, AuthSchemeFactory> map) {

Completed in 95 milliseconds