1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.pluto.descriptors.common;
17
18 /***
19 * Initialization Parameter configuration.
20 *
21 * @author <a href="ddewolf@apache.org">David H. DeWolf</a>
22 * @version $Id: InitParamDD.java 157038 2005-03-11 03:44:40Z ddewolf $
23 * @since Feb 28, 2005
24 */
25 public class InitParamDD {
26
27 /*** The name of the parameter. */
28 private String paramName;
29
30 /*** The value of the parameter. */
31 private String paramValue;
32
33 /*** The description of the parameter. */
34 private String description;
35
36 /***
37 * Default Constructor.
38 */
39 public InitParamDD() {
40
41 }
42
43 /***
44 * Retrieve the name of the parameter.
45 * @return
46 */
47 public String getParamName() {
48 return paramName;
49 }
50
51 /***
52 * Set the name of the parameter.
53 * @param paramName
54 */
55 public void setParamName(String paramName) {
56 this.paramName = paramName;
57 }
58
59 /***
60 * Get the name of the parameter.
61 * @return
62 */
63 public String getParamValue() {
64 return paramValue;
65 }
66
67 /***
68 * Set the value of the parameter.
69 * @param paramValue
70 */
71 public void setParamValue(String paramValue) {
72 this.paramValue = paramValue;
73 }
74
75 /***
76 * Retrieve the description.
77 * @return
78 */
79 public String getDescription() {
80 return description;
81 }
82
83 /***
84 * Set the description of the parameter.
85 * @param description
86 */
87 public void setDescription(String description) {
88 this.description = description;
89 }
90
91 }
92