Methods Summary |
---|
public java.lang.String | getComment()Return the URLEncoded form of the comment that identifies the session
cookie.
return _comment;
|
public java.lang.String | getDomain()Return the domain for which the cookie is valid.
return _domain;
|
public int | getMaxAge()Return the expiration time for the session cookie.
return _maxAge;
|
public java.lang.String | getName()Return the name of the session tracking cookie.
return _name;
|
public java.lang.String | getPath()Return the path that is set when the session tracking cookie is
created.
return _path;
|
public java.lang.String | getSecure()Return whether the cookie is to be marked Secure or not.
return _secure;
|
public void | setComment(java.lang.String comment)Set the comment that identifies the session cookie.
_comment = comment;
if (comment != null)
_comment = URLEncoder.encode(comment);
|
public void | setDomain(java.lang.String domain)Set the domain for which the cookie is valid.
_domain = domain;
|
public void | setMaxAge(int maxAge)Set the expiration time for the session cookie.
_maxAge = maxAge;
|
public void | setName(java.lang.String name)Set the name of the session tracking cookie (currently not supported).
_name = name;
|
public void | setPath(java.lang.String path)Set the path to use when creating the session tracking cookie.
_path = path;
|
public void | setSecure(java.lang.String secure)Set whether the cookie is marked Secure or not.
if ((secure == null) || (!secure.equalsIgnoreCase("true") &&
!secure.equalsIgnoreCase("false") &&
!secure.equalsIgnoreCase(SessionCookieConfig.DYNAMIC_SECURE))) {
throw new IllegalArgumentException();
}
_secure = secure;
|
public java.lang.String | toString()Return a String representation of this object.
StringBuffer sb = new StringBuffer("SessionCookieConfig[");
sb.append("name=");
sb.append(_name);
if (_path != null) {
sb.append(", path=");
sb.append(_path);
}
sb.append(", maxAge=");
sb.append(_maxAge);
if (_domain != null) {
sb.append(", domain=");
sb.append(_domain);
}
if (_comment != null) {
sb.append(", comment=");
sb.append(_comment);
}
sb.append("]");
return (sb.toString());
|