Uses of Interface
org.apache.hc.client5.http.cookie.CookieStore
-
Packages that use CookieStore Package Description org.apache.hc.client5.http Client component APIs common to all client transports such as connection route information and resolution as well as common HTTP method definitions and exception classes.org.apache.hc.client5.http.cookie Client HTTP state management APIs.org.apache.hc.client5.http.fluent Simple facade APIs for HttpClient based on the concept of a fluent interface.org.apache.hc.client5.http.impl.async Asynchronous HTTP client API implementation that supports both HTTP/2 and HTTP/1.1 transport.org.apache.hc.client5.http.impl.classic Classic HTTP client API implementation that supports HTTP/1.1 transport only.org.apache.hc.client5.http.protocol HTTP protocol interceptors that enable advanced functionality such as HTTP state management and authentication state caching. -
-
Uses of CookieStore in org.apache.hc.client5.http
Fields in org.apache.hc.client5.http declared as CookieStore Modifier and Type Field Description private CookieStore
ContextBuilder. cookieStore
Methods in org.apache.hc.client5.http with parameters of type CookieStore Modifier and Type Method Description ContextBuilder
ContextBuilder. useCookieStore(CookieStore cookieStore)
-
Uses of CookieStore in org.apache.hc.client5.http.cookie
Classes in org.apache.hc.client5.http.cookie that implement CookieStore Modifier and Type Class Description class
BasicCookieStore
Default implementation ofCookieStore
-
Uses of CookieStore in org.apache.hc.client5.http.fluent
Fields in org.apache.hc.client5.http.fluent declared as CookieStore Modifier and Type Field Description private CookieStore
Executor. cookieStore
Methods in org.apache.hc.client5.http.fluent with parameters of type CookieStore Modifier and Type Method Description Executor
Executor. use(CookieStore cookieStore)
-
Uses of CookieStore in org.apache.hc.client5.http.impl.async
Fields in org.apache.hc.client5.http.impl.async declared as CookieStore Modifier and Type Field Description private CookieStore
H2AsyncClientBuilder. cookieStore
private CookieStore
HttpAsyncClientBuilder. cookieStore
private CookieStore
InternalAbstractHttpAsyncClient. cookieStore
Methods in org.apache.hc.client5.http.impl.async with parameters of type CookieStore Modifier and Type Method Description H2AsyncClientBuilder
H2AsyncClientBuilder. setDefaultCookieStore(CookieStore cookieStore)
Assigns defaultCookieStore
instance which will be used for request execution if not explicitly set in the client execution context.HttpAsyncClientBuilder
HttpAsyncClientBuilder. setDefaultCookieStore(CookieStore cookieStore)
Assigns defaultCookieStore
instance which will be used for request execution if not explicitly set in the client execution context.Constructors in org.apache.hc.client5.http.impl.async with parameters of type CookieStore Constructor Description InternalAbstractHttpAsyncClient(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncPushConsumerRegistry pushConsumerRegistry, java.util.concurrent.ThreadFactory threadFactory, AsyncExecChainElement execChain, org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry, org.apache.hc.core5.http.config.Lookup<AuthSchemeFactory> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
InternalH2AsyncClient(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncExecChainElement execChain, AsyncPushConsumerRegistry pushConsumerRegistry, java.util.concurrent.ThreadFactory threadFactory, InternalH2ConnPool connPool, HttpRoutePlanner routePlanner, org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry, org.apache.hc.core5.http.config.Lookup<AuthSchemeFactory> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
InternalHttpAsyncClient(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncExecChainElement execChain, AsyncPushConsumerRegistry pushConsumerRegistry, java.util.concurrent.ThreadFactory threadFactory, AsyncClientConnectionManager manager, HttpRoutePlanner routePlanner, TlsConfig tlsConfig, org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry, org.apache.hc.core5.http.config.Lookup<AuthSchemeFactory> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
-
Uses of CookieStore in org.apache.hc.client5.http.impl.classic
Fields in org.apache.hc.client5.http.impl.classic declared as CookieStore Modifier and Type Field Description private CookieStore
HttpClientBuilder. cookieStore
private CookieStore
InternalHttpClient. cookieStore
Methods in org.apache.hc.client5.http.impl.classic with parameters of type CookieStore Modifier and Type Method Description HttpClientBuilder
HttpClientBuilder. setDefaultCookieStore(CookieStore cookieStore)
Assigns defaultCookieStore
instance which will be used for request execution if not explicitly set in the client execution context.Constructors in org.apache.hc.client5.http.impl.classic with parameters of type CookieStore Constructor Description InternalHttpClient(HttpClientConnectionManager connManager, org.apache.hc.core5.http.impl.io.HttpRequestExecutor requestExecutor, ExecChainElement execChain, HttpRoutePlanner routePlanner, org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry, org.apache.hc.core5.http.config.Lookup<AuthSchemeFactory> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
-
Uses of CookieStore in org.apache.hc.client5.http.protocol
Methods in org.apache.hc.client5.http.protocol that return CookieStore Modifier and Type Method Description CookieStore
HttpClientContext. getCookieStore()
Methods in org.apache.hc.client5.http.protocol with parameters of type CookieStore Modifier and Type Method Description private void
ResponseProcessCookies. processCookies(java.lang.String exchangeId, java.util.Iterator<org.apache.hc.core5.http.Header> iterator, CookieSpec cookieSpec, CookieOrigin cookieOrigin, CookieStore cookieStore)
void
HttpClientContext. setCookieStore(CookieStore cookieStore)
-