org.apache.cactus.util
class ClientCookie

java.lang.Object
  |
  +--org.apache.cactus.util.ClientCookie

Deprecated. As of Cactus 1.2, replaced by org.apache.cactus.Cookie

public class ClientCookie
extends java.lang.Object

Contains cookie information for cookies returned from the server to the client.

Version:
$Id: ClientCookie.java,v 1.1 2002/03/01 00:43:47 vmassol Exp $
Author:
Vincent Massol
See Also:
Cookie

Constructor Summary
ClientCookie(String theName, String theValue, String theComment, String theDomain, long theMaxAge, String thePath, boolean isSecure, float theVersion)
          Deprecated. Construct a client cookie.
 
Method Summary
 String getComment()
          Deprecated.  
 String getDomain()
          Deprecated.  
 long getMaxAge()
          Deprecated.  
 String getName()
          Deprecated.  
 String getPath()
          Deprecated.  
 String getValue()
          Deprecated.  
 float getVersion()
          Deprecated.  
 boolean isSecure()
          Deprecated.  
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClientCookie

public ClientCookie(String theName,
                    String theValue,
                    String theComment,
                    String theDomain,
                    long theMaxAge,
                    String thePath,
                    boolean isSecure,
                    float theVersion)
Deprecated. 
Construct a client cookie.
Parameters:
theName - the cookie's name
theValue - the cookie's value
theComment - the cookie's comment
theDomain - the cookie's domain
theMaxAge - the cookie's max age
thePath - the cookie's path
isSecure - true is the cookies is a secure cookie
theVersion - the cookie's version
Method Detail

getComment

public String getComment()
Deprecated. 
Returns:
the cookie's comment

getDomain

public String getDomain()
Deprecated. 
Returns:
the cookie's domain

getMaxAge

public long getMaxAge()
Deprecated. 
Returns:
the cookie's max age

getName

public String getName()
Deprecated. 
Returns:
the cookie's name

getPath

public String getPath()
Deprecated. 
Returns:
the cookie's path

getValue

public String getValue()
Deprecated. 
Returns:
the cookie's value

getVersion

public float getVersion()
Deprecated. 
Returns:
the cookie's spec. version

isSecure

public boolean isSecure()
Deprecated. 
Returns:
true if the cookie is a secure cookie


Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.