01: /*
02: * Header.java
03: *
04: *
05: * Copyright (c) 2003 Rimfaxe ApS (www.rimfaxe.com).
06: * All rights reserved.
07: *
08: * This package is written by Lars Andersen <lars@rimfaxe.com>
09: * and licensed by Rimfaxe ApS.
10: *
11: * Redistribution and use in source and binary forms, with or without
12: * modification, are permitted provided that the following conditions
13: * are met:
14: *
15: * 1. Redistributions of source code must retain the above copyright
16: * notice, this list of conditions and the following disclaimer.
17: *
18: * 2. Redistributions in binary form must reproduce the above copyright
19: * notice, this list of conditions and the following disclaimer in
20: * the documentation and/or other materials provided with the
21: * distribution.
22: *
23: * 3. The end-user documentation included with the redistribution, if
24: * any, must include the following acknowlegement:
25: * "This product includes software developed by Rimfaxe ApS
26: (www.rimfaxe.com)"
27: * Alternately, this acknowlegement may appear in the software itself,
28: * if and wherever such third-party acknowlegements normally appear.
29: *
30: * 4. The names "Rimfaxe", "Rimfaxe Software", "Lars Andersen" and
31: * "Rimfaxe WebServer" must not be used to endorse or promote products
32: * derived from this software without prior written permission. For written
33: * permission, please contact info@rimfaxe.com
34: *
35: * 5. Products derived from this software may not be called "Rimfaxe"
36: * nor may "Rimfaxe" appear in their names without prior written
37: * permission of the Rimfaxe ApS.
38: *
39: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
40: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
42: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
43: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
44: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
45: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
47: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49: * SUCH DAMAGE.
50: *
51: */
52:
53: package com.rimfaxe.http;
54:
55: import java.util.*;
56:
57: /**
58: *
59: * @author lars
60: */
61: public class Header {
62: String name = "";
63: String value = "";
64:
65: /** Creates a new instance of Header */
66: public Header(String name, String value) {
67: this .name = name;
68: this .value = value;
69: }
70:
71: public String getName() {
72: return name;
73: }
74:
75: public String getValue() {
76: return value;
77: }
78: }
|