1 30 31 package org.apache.commons.httpclient.auth; 32 33 import org.apache.commons.httpclient.Credentials; 34 35 63 public interface CredentialsProvider { 64 65 71 public static final String PROVIDER = "http.authentication.credential-provider"; 72 73 82 public Credentials getCredentials( 83 final AuthScheme scheme, 84 final String host, 85 int port, 86 boolean proxy) throws CredentialsNotAvailableException; 87 88 } 89 | Popular Tags |