View Javadoc

1   /*
2    * Copyright 2005 The Apache Software Foundation
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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