1
2 /*
3 * Copyright (C) 2005 by Arno Schumacher
4 *
5 * This file is part of net.sourceforge.servletspy
6 *
7 * net.sourceforge.servletspy is free software; you can redistribute
8 * it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation; either
10 * version 2, or (at your option) any later version.
11 *
12 * net.sourceforge.servletspy is distributed in the hope that it will
13 * be useful, but WITHOUT ANY WARRANTY; without even the implied
14 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 * See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA
20 */
21
22
23 package net.sourceforge.servletspy.config;
24
25 /***
26 * @author arno schumacher
27 */
28 public final class Param {
29 protected String name;
30
31 protected String value;
32
33 Param() {
34 }
35
36 public Param(final String pName, final String pValue) {
37 this.name = pName == null ? "" : pName.trim();
38 this.value = pValue == null ? "" : pValue.trim();
39 }
40
41 public String getName() {
42 return name;
43 }
44
45 public String getValue() {
46 return value;
47 }
48
49 public String toString() {
50 StringBuffer sb = new StringBuffer();
51 sb.append(name);
52 sb.append('=');
53 sb.append(value);
54 return sb.toString();
55 }
56 }