Uses of Interface
org.apache.http.cookie.CookieAttributeHandler
-
Packages that use CookieAttributeHandler Package Description org.apache.http.cookie Client HTTP state management APIs.org.apache.http.impl.cookie Default implementations of standard and common HTTP state management policies. -
-
Uses of CookieAttributeHandler in org.apache.http.cookie
Subinterfaces of CookieAttributeHandler in org.apache.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.http.impl.cookie
Classes in org.apache.http.impl.cookie that implement CookieAttributeHandler Modifier and Type Class Description class
AbstractCookieAttributeHandler
class
BasicCommentHandler
class
BasicDomainHandler
class
BasicExpiresHandler
class
BasicMaxAgeHandler
class
BasicPathHandler
class
BasicSecureHandler
class
BrowserCompatVersionAttributeHandler
Deprecated.(4.4) no longer used.class
LaxExpiresHandler
class
LaxMaxAgeHandler
class
NetscapeDomainHandler
class
PublicSuffixDomainFilter
Wraps aCookieAttributeHandler
and leverages its match method to never match a suffix from a black list.class
PublicSuffixFilter
Deprecated.(4.4) usePublicSuffixDomainFilter
class
RFC2109DomainHandler
class
RFC2109VersionHandler
class
RFC2965CommentUrlAttributeHandler
"CommentURL"
cookie attribute handler for RFC 2965 cookie spec.class
RFC2965DiscardAttributeHandler
"Discard"
cookie attribute handler for RFC 2965 cookie spec.class
RFC2965DomainAttributeHandler
"Domain"
cookie attribute handler for RFC 2965 cookie spec.class
RFC2965PortAttributeHandler
"Port"
cookie attribute handler for RFC 2965 cookie spec.class
RFC2965VersionAttributeHandler
"Version"
cookie attribute handler for RFC 2965 cookie spec.Fields in org.apache.http.impl.cookie declared as CookieAttributeHandler Modifier and Type Field Description private CookieAttributeHandler[]
RFC6265CookieSpec. attribHandlers
private CookieAttributeHandler
PublicSuffixFilter. wrapped
Deprecated.Fields in org.apache.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.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.http.impl.cookie that return types with arguments of type CookieAttributeHandler Modifier and Type Method Description protected java.util.Collection<CookieAttributeHandler>
AbstractCookieSpec. getAttribHandlers()
Methods in org.apache.http.impl.cookie with parameters of type CookieAttributeHandler Modifier and Type Method Description void
AbstractCookieSpec. registerAttribHandler(java.lang.String name, CookieAttributeHandler handler)
Deprecated.(4.4) useAbstractCookieSpec(java.util.HashMap)
orAbstractCookieSpec(org.apache.http.cookie.CommonCookieAttributeHandler...)
constructors instead.Constructors in org.apache.http.impl.cookie with parameters of type CookieAttributeHandler Constructor Description PublicSuffixFilter(CookieAttributeHandler wrapped)
Deprecated.Constructor parameters in org.apache.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)
-