Contents
Interface CookiePolicy
public interface CookiePolicy
CookiePolicy implementations decide which cookies should be accepted
and which should be rejected. Three pre-defined policy implementations
are provided, namely ACCEPT_ALL, ACCEPT_NONE and ACCEPT_ORIGINAL_SERVER.
See RFC 2965 sec. 3.3 and 7 for more detail.
- Since:
- 1.6
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final CookiePolicy
One pre-defined policy which accepts all cookies.static final CookiePolicy
One pre-defined policy which accepts no cookies.static final CookiePolicy
One pre-defined policy which only accepts cookies from original server. -
Method Summary
Modifier and TypeMethodDescriptionboolean
shouldAccept
(URI uri, HttpCookie cookie) Will be called to see whether or not this cookie should be accepted.