Package org.apache.http.client
Interface AuthCache
-
- All Known Implementing Classes:
BasicAuthCache
public interface AuthCacheAbstractAuthSchemecache. InitializedAuthSchemeobjects from this cache can be used to preemptively authenticate against known hosts.- Since:
- 4.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()AuthSchemeget(org.apache.http.HttpHost host)voidput(org.apache.http.HttpHost host, AuthScheme authScheme)voidremove(org.apache.http.HttpHost host)
-
-
-
Method Detail
-
put
void put(org.apache.http.HttpHost host, AuthScheme authScheme)
-
get
AuthScheme get(org.apache.http.HttpHost host)
-
remove
void remove(org.apache.http.HttpHost host)
-
clear
void clear()
-
-