public interface java.net
CookiePolicy


Show All Login
Java SE 6
  
Details
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 & 7 for more detail.
version%I%, %E%
since1.6


Fields
final public static CookiePolicy ACCEPT_ALL
One pre-defined policy which accepts all cookies.
final public static CookiePolicy ACCEPT_NONE
One pre-defined policy which accepts no cookies.
final public static CookiePolicy ACCEPT_ORIGINAL_SERVER
One pre-defined policy which only accepts cookies from original server.

Methods
public boolean shouldAccept(URI uri, HttpCookie cookie) Details
Will be called to see whether or not this cookie should be accepted.
urithe URI to consult accept policy with
cookiethe HttpCookie object in question
returntrue if this cookie should be accepted; otherwise, false