Uses of Interface
org.apache.hc.client5.http.cookie.CookieSpecFactory
Packages that use CookieSpecFactory
Package
Description
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.
Asynchronous HTTP client API implementation that supports both
HTTP/2 and HTTP/1.1 transport.
Classic HTTP client API implementation that supports HTTP/1.1 transport
only.
Standard and common HTTP cookie management policies.
HTTP protocol interceptors that enable advanced functionality
such as HTTP state management and authentication state caching.
-
Uses of CookieSpecFactory in org.apache.hc.client5.http
Fields in org.apache.hc.client5.http with type parameters of type CookieSpecFactoryModifier and TypeFieldDescriptionprivate org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> ContextBuilder.cookieSpecRegistry
Method parameters in org.apache.hc.client5.http with type arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionContextBuilder.useCookieSpecRegistry
(org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry) -
Uses of CookieSpecFactory in org.apache.hc.client5.http.impl
Methods in org.apache.hc.client5.http.impl that return types with arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionstatic org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> CookieSpecSupport.createDefault()
Creates the default registry, using the default public suffix matcher.static org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> CookieSpecSupport.createDefault
(PublicSuffixMatcher publicSuffixMatcher) Creates the default registry with the provided public suffix matcherstatic org.apache.hc.core5.http.config.RegistryBuilder
<CookieSpecFactory> CookieSpecSupport.createDefaultBuilder()
Creates a builder containing the default registry entries with the default public suffix matcher.static org.apache.hc.core5.http.config.RegistryBuilder
<CookieSpecFactory> CookieSpecSupport.createDefaultBuilder
(PublicSuffixMatcher publicSuffixMatcher) Creates a builder containing the default registry entries, using the provided public suffix matcher. -
Uses of CookieSpecFactory in org.apache.hc.client5.http.impl.async
Fields in org.apache.hc.client5.http.impl.async with type parameters of type CookieSpecFactoryModifier and TypeFieldDescriptionprivate org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> H2AsyncClientBuilder.cookieSpecRegistry
private org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> HttpAsyncClientBuilder.cookieSpecRegistry
private final org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> InternalAbstractHttpAsyncClient.cookieSpecRegistry
Method parameters in org.apache.hc.client5.http.impl.async with type arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionfinal H2AsyncClientBuilder
H2AsyncClientBuilder.setDefaultCookieSpecRegistry
(org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry) Assigns defaultCookieSpec
registry which will be used for request execution if not explicitly set in the client execution context.final HttpAsyncClientBuilder
HttpAsyncClientBuilder.setDefaultCookieSpecRegistry
(org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry) Assigns defaultCookieSpec
registry which will be used for request execution if not explicitly set in the client execution context.Constructor parameters in org.apache.hc.client5.http.impl.async with type arguments of type CookieSpecFactoryModifierConstructorDescription(package private)
InternalAbstractHttpAsyncClient
(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncPushConsumerRegistry pushConsumerRegistry, 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, List<Closeable> closeables) (package private)
InternalH2AsyncClient
(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncExecChainElement execChain, AsyncPushConsumerRegistry pushConsumerRegistry, 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, List<Closeable> closeables) (package private)
InternalHttpAsyncClient
(org.apache.hc.core5.reactor.DefaultConnectingIOReactor ioReactor, AsyncExecChainElement execChain, AsyncPushConsumerRegistry pushConsumerRegistry, 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, List<Closeable> closeables) -
Uses of CookieSpecFactory in org.apache.hc.client5.http.impl.classic
Fields in org.apache.hc.client5.http.impl.classic with type parameters of type CookieSpecFactoryModifier and TypeFieldDescriptionprivate org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> HttpClientBuilder.cookieSpecRegistry
private final org.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> InternalHttpClient.cookieSpecRegistry
Method parameters in org.apache.hc.client5.http.impl.classic with type arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionfinal HttpClientBuilder
HttpClientBuilder.setDefaultCookieSpecRegistry
(org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> cookieSpecRegistry) Assigns defaultCookieSpec
registry which will be used for request execution if not explicitly set in the client execution context.Constructor parameters in org.apache.hc.client5.http.impl.classic with type arguments of type CookieSpecFactoryModifierConstructorDescriptionInternalHttpClient
(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, List<Closeable> closeables) -
Uses of CookieSpecFactory in org.apache.hc.client5.http.impl.cookie
Classes in org.apache.hc.client5.http.impl.cookie that implement CookieSpecFactoryModifier and TypeClassDescriptionclass
CookieSpecFactory
implementation that ignores all cookies.class
CookieSpecFactory
implementation that provides an instance of RFC 6265 conformant cookie policy. -
Uses of CookieSpecFactory in org.apache.hc.client5.http.protocol
Methods in org.apache.hc.client5.http.protocol that return types with arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionorg.apache.hc.core5.http.config.Lookup
<CookieSpecFactory> HttpClientContext.getCookieSpecRegistry()
Method parameters in org.apache.hc.client5.http.protocol with type arguments of type CookieSpecFactoryModifier and TypeMethodDescriptionvoid
HttpClientContext.setCookieSpecRegistry
(org.apache.hc.core5.http.config.Lookup<CookieSpecFactory> lookup)