/**
* Copyright (c) 2009--2010 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
* implied, including the implied warranties of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
* along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
*/
package com.redhat.rhn.domain.org;
import com.redhat.rhn.domain.BaseDomainHelper;
/**
* TemplateString
* @version $Rev$
*/
public class TemplateString extends BaseDomainHelper {
private Long id;
private String label;
private String value;
private String description;
private TemplateCategory category;
/**
* @return Returns the category.
*/
public TemplateCategory getCategory() {
return category;
}
/**
* @param categoryIn The category to set.
*/
public void setCategory(TemplateCategory categoryIn) {
this.category = categoryIn;
}
/**
* @return Returns the description.
*/
public String getDescription() {
return description;
}
/**
* @param descriptionIn The description to set.
*/
public void setDescription(String descriptionIn) {
this.description = descriptionIn;
}
/**
* @return Returns the id.
*/
public Long getId() {
return id;
}
/**
* @param idIn The id to set.
*/
public void setId(Long idIn) {
this.id = idIn;
}
/**
* @return Returns the label.
*/
public String getLabel() {
return label;
}
/**
* @param labelIn The label to set.
*/
public void setLabel(String labelIn) {
this.label = labelIn;
}
/**
* @return Returns the value.
*/
public String getValue() {
return value;
}
/**
* @param valueIn The value to set.
*/
public void setValue(String valueIn) {
this.value = valueIn;
}
}