ParameterRendering.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.monitor.sdk.parameters;
import java.util.ArrayList;
import java.util.List;
/**
* ParameterRendering
*
* @author Poli Andrea (apoli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class ParameterRendering<T> {
private String label;
private String suggestion;
private boolean required;
private boolean hidden;
private T defaultValue;
private List<String> values = new ArrayList<>();
private List<String> labels = new ArrayList<>();
private Integer rows; // solo per text area
private Integer columns; // solo per text area
private String labelRight;
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
}
public String getSuggestion() {
return this.suggestion;
}
public void setSuggestion(String suggestion) {
this.suggestion = suggestion;
}
public boolean isRequired() {
return this.required;
}
public void setRequired(boolean required) {
this.required = required;
}
public boolean isHidden() {
return this.hidden;
}
public void setHidden(boolean hidden) {
this.hidden = hidden;
}
public T getDefaultValue() {
return this.defaultValue;
}
public void setDefaultValue(T defaultValue) {
this.defaultValue = defaultValue;
}
public List<String> getValues() {
return this.values;
}
public void setValues(List<String> values) {
this.values = values;
}
public List<String> getLabels() {
return this.labels;
}
public void setLabels(List<String> labels) {
this.labels = labels;
}
public String getLabelRight() {
return this.labelRight;
}
public void setLabelRight(String labelRight) {
this.labelRight = labelRight;
}
public Integer getRows() {
return this.rows;
}
public void setRows(Integer rows) {
this.rows = rows;
}
public Integer getColumns() {
return this.columns;
}
public void setColumns(Integer columns) {
this.columns = columns;
}
}