PATH |
Inherits from: Object
Package: com.webobjects.appserver
WOCookie is used for the creation and setting of cookies in your response objects. A cookie allows for the persistent storage of client state. Instead of using a WOSession object (which can potentially have a shorter life span), a cookie allows server-side applications to store state in client browsers for a specific or indeterminate amount of time. An advantage to cookies is that the data will be stored on the client and not on the server, allowing the server to maintain less state information. A specific advantage in WebObjects applications is that cookies allow the server to put state into the browser that is not bound to a session. Hence, the client can "leave" your application and return with its cookie's state intact.
A WOCookie object defines a cookie that can be added to the HTTP header for your response. You create a cookie using the static method cookieWithName.
To add or remove cookies from the response, use the WOMessage methods addCookie and removeCookie. To retrieve cookie data, use the WORequest methods cookieValues, cookieValueForKey, and cookieValuesForKey. WORequest returns the data as name/value pairs and not as WOCookie objects, since browsers don't return the additional data WOCookies provide, such as path name and expiration date.
For more information about cookies and their implementation details, see Netscape's preliminary specification at http://www.netscape.com/newsref/std/cookie_spec.html and RFC 2109 - HTTP State Management Mechanism at http://www.cis.ohio-state.edu/htbin/rfc/rfc2109.html.
If and when new details evolve in the implementation of cookies, you can subclass WOCookie and implement new behaviors. Pay particular attention to how you override headerString, which WOResponse uses to fill the HTTP response with a header string.
Constructors WOCookie Creation cookieWithName Obtaining a cookie's attributes domain expires headerString isSecure name path value Setting a cookie's attributes setDomain setExpires setIsSecure setName setPath setValue
public WOCookie ( String aName, String aValue, String aPath, String aDomain, NSTimestamp aDate, boolean isSecure)
public WOCookie ( String aName String aValue String aPath String aDomain int timeout boolean isSecure)
public WOCookie( String aName, String aValue)
A note on time out periods: time out periods are in seconds; a negative time out period indicates no time out; a time out of zero indicates expiration of all cookies with the given name.
See Also: cookieWithName, setDomain, setExpires, setIsSecure, setName, setPath, setValue
public WOCookie ( String aName, String aValue, String aPath, String aDomain, NSTimestamp aDate, boolean isSecure)
public static WOCookie cookieWithName( String aName, String aValue)
public static WOCookie cookieWithName ( String aName String aValue String aPath String aDomain int timeout boolean isSecure)
A note on time out periods: time out periods are in seconds; a negative time out period indicates no time out; a time out of zero indicates expiration of all cookies with the given name.
See Also: domain, expires, isSecure, name, path, value
public String domain()
public NSTimestamp expires()
public String headerString()
Returns the string that will be used in the HTTP header. The returned string has the format:
Set-cookie: name=value; expires=date; path=path; domain=domain; secure;The calendar format for the expiration date is:
@"%A, %d-%b-%Y %H:%M:%S GMT"
where all times are converted relative to Greenwich Mean Time.
This method is called by WOResponse when generating the response.
public boolean isSecure()
public String name()
public String path()
public void setDomain(String aDomain)
See Also: cookieWithName
public void setExpires(NSTimestamp expirationDate)
public void setIsSecure(boolean flag)
See Also: cookieWithName
public void setName(String aName)
See Also: cookieWithName
public void setPath(String aPath)
See Also: cookieWithName
public void setTimeOut(int timeOut)
public void setValue(String aValue)
See Also: cookieWithName
public int timeOut()
public String toString()
public String value()
© 2001 Apple Computer, Inc. (Last Published April 15, 2001)