001: /**
002: * HttpSetCookie.java
003: *
004: *
005: * Copyright (c) 2003 Rimfaxe ApS (www.rimfaxe.com).
006: * All rights reserved.
007: *
008: * This package is written by Lars Andersen <lars@rimfaxe.com>
009: * and licensed by Rimfaxe ApS.
010: *
011: * Redistribution and use in source and binary forms, with or without
012: * modification, are permitted provided that the following conditions
013: * are met:
014: *
015: * 1. Redistributions of source code must retain the above copyright
016: * notice, this list of conditions and the following disclaimer.
017: *
018: * 2. Redistributions in binary form must reproduce the above copyright
019: * notice, this list of conditions and the following disclaimer in
020: * the documentation and/or other materials provided with the
021: * distribution.
022: *
023: * 3. The end-user documentation included with the redistribution, if
024: * any, must include the following acknowlegement:
025: * "This product includes software developed by Rimfaxe ApS
026: (www.rimfaxe.com)"
027: * Alternately, this acknowlegement may appear in the software itself,
028: * if and wherever such third-party acknowlegements normally appear.
029: *
030: * 4. The names "Rimfaxe", "Rimfaxe Software", "Lars Andersen" and
031: * "Rimfaxe WebServer" must not be used to endorse or promote products
032: * derived from this software without prior written permission. For written
033: * permission, please contact info@rimfaxe.com
034: *
035: * 5. Products derived from this software may not be called "Rimfaxe"
036: * nor may "Rimfaxe" appear in their names without prior written
037: * permission of the Rimfaxe ApS.
038: *
039: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
040: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
041: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
042: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
043: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
044: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
045: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
046: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
047: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
048: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
049: * SUCH DAMAGE.
050: *
051: */package com.rimfaxe.webserver.servletapi.session;
052:
053: public class HttpSetCookie {
054:
055: protected String name = null;
056:
057: protected String value = null;
058:
059: protected String comment = null;
060:
061: protected String domain = null;
062:
063: protected int maxage = -1;
064:
065: protected String path = null;
066:
067: /**
068: * Does this cookie requires special security care by client ?
069: */
070: protected boolean security = false;
071:
072: /**
073: * This cookie's version.
074: */
075: protected int version = 1;
076:
077: public String getComment() {
078: return comment;
079: }
080:
081: public void setComment(String comment) {
082: this .comment = comment;
083: }
084:
085: public String getDomain() {
086: return domain;
087: }
088:
089: public void setDomain(String domain) {
090: this .domain = domain;
091: }
092:
093: public int getMaxAge() {
094: return maxage;
095: }
096:
097: public void setMaxAge(int maxage) {
098: this .maxage = maxage;
099: }
100:
101: public String getPath() {
102: return path;
103: }
104:
105: public void setPath(String path) {
106: this .path = path;
107: }
108:
109: public boolean getSecurity() {
110: return security;
111: }
112:
113: public void setSecurity(boolean onoff) {
114: this .security = onoff;
115: }
116:
117: public int getVersion() {
118: return version;
119: }
120:
121: public void setVersion(int version) {
122: this .version = version;
123: }
124:
125: public void setName(String name) {
126: this .name = name;
127: }
128:
129: public String getName() {
130: return name;
131: }
132:
133: public void setValue(String value) {
134: this .value = value;
135: }
136:
137: public String getValue() {
138: return value;
139: }
140:
141: public String toString() {
142: String cookie = name + "=" + value;
143: if (comment != null)
144: cookie = cookie + "; comment=" + comment;
145: if (maxage != -1)
146: cookie = cookie + "; maxage=" + maxage;
147: if (domain != null)
148: cookie = cookie + "; domain=" + domain;
149: if (path != null)
150: cookie = cookie + "; path=" + path;
151: if (security)
152: cookie = cookie + "; secure";
153: return cookie;
154: }
155:
156: public HttpSetCookie(boolean isValid, String name, String value) {
157: this .name = name;
158: this .value = value;
159: }
160:
161: public HttpSetCookie(String name, String value) {
162: this .name = name;
163: this .value = value;
164: }
165:
166: public HttpSetCookie() {
167: }
168: }
|