Moved AuthState to the public API package

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@538648 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2007-05-16 16:43:08 +00:00
parent 829caee0ec
commit 03cc12fa3c
4 changed files with 4 additions and 3 deletions

View File

@ -28,7 +28,7 @@
* *
*/ */
package org.apache.http.impl.client; package org.apache.http.client;
import org.apache.http.auth.AuthScheme; import org.apache.http.auth.AuthScheme;
import org.apache.http.auth.AuthScope; import org.apache.http.auth.AuthScope;

View File

@ -42,7 +42,7 @@ import org.apache.http.auth.AUTH;
import org.apache.http.auth.AuthScheme; import org.apache.http.auth.AuthScheme;
import org.apache.http.auth.AuthenticationException; import org.apache.http.auth.AuthenticationException;
import org.apache.http.auth.Credentials; import org.apache.http.auth.Credentials;
import org.apache.http.impl.client.AuthState; import org.apache.http.client.AuthState;
import org.apache.http.protocol.HttpContext; import org.apache.http.protocol.HttpContext;
/** /**

View File

@ -42,7 +42,7 @@ import org.apache.http.auth.AUTH;
import org.apache.http.auth.AuthScheme; import org.apache.http.auth.AuthScheme;
import org.apache.http.auth.AuthenticationException; import org.apache.http.auth.AuthenticationException;
import org.apache.http.auth.Credentials; import org.apache.http.auth.Credentials;
import org.apache.http.impl.client.AuthState; import org.apache.http.client.AuthState;
import org.apache.http.protocol.HttpContext; import org.apache.http.protocol.HttpContext;
/** /**

View File

@ -56,6 +56,7 @@ import org.apache.http.auth.AuthScope;
import org.apache.http.auth.AuthenticationException; import org.apache.http.auth.AuthenticationException;
import org.apache.http.auth.Credentials; import org.apache.http.auth.Credentials;
import org.apache.http.auth.MalformedChallengeException; import org.apache.http.auth.MalformedChallengeException;
import org.apache.http.client.AuthState;
import org.apache.http.client.AuthenticationHandler; import org.apache.http.client.AuthenticationHandler;
import org.apache.http.client.ClientRequestDirector; import org.apache.http.client.ClientRequestDirector;
import org.apache.http.client.HttpRequestRetryHandler; import org.apache.http.client.HttpRequestRetryHandler;