Uses of Interface
org.apache.hc.client5.http.cookie.CookieAttributeHandler
-
Packages that use CookieAttributeHandler Package Description org.apache.hc.client5.http.cookie Client HTTP state management APIs.org.apache.hc.client5.http.impl.cookie Standard and common HTTP cookie management policies. -
-
Uses of CookieAttributeHandler in org.apache.hc.client5.http.cookie
Subinterfaces of CookieAttributeHandler in org.apache.hc.client5.http.cookie Modifier and Type Interface Description interface
CommonCookieAttributeHandler
Extension ofCookieAttributeHandler
intended to handle one specific common attribute whose name is returned withCommonCookieAttributeHandler.getAttributeName()
method. -
Uses of CookieAttributeHandler in org.apache.hc.client5.http.impl.cookie
Classes in org.apache.hc.client5.http.impl.cookie that implement CookieAttributeHandler Modifier and Type Class Description class
AbstractCookieAttributeHandler
class
BasicDomainHandler
Cookiedomain
attribute handler.class
BasicExpiresHandler
Cookieexpires
attribute handler.class
BasicHttpOnlyHandler
CookieHttpOnly
attribute handler.class
BasicMaxAgeHandler
Cookiemax-age
attribute handler.class
BasicPathHandler
Cookiepath
attribute handler.class
BasicSecureHandler
Cookiesecure
attribute handler.class
LaxExpiresHandler
Cookieexpires
attribute handler conformant to the more relaxed interpretation of HTTP state management.class
LaxMaxAgeHandler
Cookiemax-age
attribute handler conformant to the more relaxed interpretation of HTTP state management.class
PublicSuffixDomainFilter
Wraps aCookieAttributeHandler
and leverages its match method to never match a suffix from a black list.Fields in org.apache.hc.client5.http.impl.cookie declared as CookieAttributeHandler Modifier and Type Field Description private CookieAttributeHandler[]
RFC6265CookieSpec. attribHandlers
Fields in org.apache.hc.client5.http.impl.cookie with type parameters of type CookieAttributeHandler Modifier and Type Field Description private java.util.Map<java.lang.String,CookieAttributeHandler>
AbstractCookieSpec. attribHandlerMap
Stores attribute name -> attribute handler mappingsprivate java.util.Map<java.lang.String,CookieAttributeHandler>
RFC6265CookieSpec. attribHandlerMap
Methods in org.apache.hc.client5.http.impl.cookie that return CookieAttributeHandler Modifier and Type Method Description protected CookieAttributeHandler
AbstractCookieSpec. findAttribHandler(java.lang.String name)
Finds an attribute handlerCookieAttributeHandler
for the given attribute.protected CookieAttributeHandler
AbstractCookieSpec. getAttribHandler(java.lang.String name)
Gets attribute handlerCookieAttributeHandler
for the given attribute.Methods in org.apache.hc.client5.http.impl.cookie that return types with arguments of type CookieAttributeHandler Modifier and Type Method Description protected java.util.Collection<CookieAttributeHandler>
AbstractCookieSpec. getAttribHandlers()
Constructor parameters in org.apache.hc.client5.http.impl.cookie with type arguments of type CookieAttributeHandler Constructor Description AbstractCookieSpec(java.util.HashMap<java.lang.String,CookieAttributeHandler> map)
CookieSpecBase(java.util.HashMap<java.lang.String,CookieAttributeHandler> map)
-