blob: 1b3ec7c72cd2e0aa4c08a7fe411302fd451e304e [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pluto.descriptors.common;
/**
* Initialization Parameter configuration.
*
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version $Id: InitParamDD.java 157038 2005-03-11 03:44:40Z ddewolf $
* @since Feb 28, 2005
*/
public class InitParamDD {
/** The name of the parameter. */
private String paramName;
/** The value of the parameter. */
private String paramValue;
/** The description of the parameter. */
private String description;
/**
* Default Constructor.
*/
public InitParamDD() {
}
/**
* Retrieve the name of the parameter.
* @return
*/
public String getParamName() {
return paramName;
}
/**
* Set the name of the parameter.
* @param paramName
*/
public void setParamName(String paramName) {
this.paramName = paramName;
}
/**
* Get the name of the parameter.
* @return
*/
public String getParamValue() {
return paramValue;
}
/**
* Set the value of the parameter.
* @param paramValue
*/
public void setParamValue(String paramValue) {
this.paramValue = paramValue;
}
/**
* Retrieve the description.
* @return
*/
public String getDescription() {
return description;
}
/**
* Set the description of the parameter.
* @param description
*/
public void setDescription(String description) {
this.description = description;
}
}