| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
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 & 7 for more detail.
| Field Summary | |
|---|---|
| static CookiePolicy | ACCEPT_ALLOne pre-defined policy which accepts all cookies. | 
| static CookiePolicy | ACCEPT_NONEOne pre-defined policy which accepts no cookies. | 
| static CookiePolicy | ACCEPT_ORIGINAL_SERVEROne pre-defined policy which only accepts cookies from original server. | 
| Method Summary | |
|---|---|
|  boolean | shouldAccept(URI uri,
             HttpCookie cookie)Will be called to see whether or not this cookie should be accepted. | 
| Field Detail | 
|---|
static final CookiePolicy ACCEPT_ALL
static final CookiePolicy ACCEPT_NONE
static final CookiePolicy ACCEPT_ORIGINAL_SERVER
| Method Detail | 
|---|
boolean shouldAccept(URI uri,
                     HttpCookie cookie)
uri - the URI to consult accept policy withcookie - the HttpCookie object in question
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.