GeneralLink.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.web.lib.mvc;
import java.io.Serializable;
/**
* GeneralLink
*
* @author Andrea Poli (apoli@link.it)
* @author Stefano Corallo (corallo@link.it)
* @author Sandra Giangrandi (sandra@link.it)
* @author $Author$
* @version $Rev$, $Date$
*
*/
public class GeneralLink implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
String label;
String url;
String target;
String onclick;
String icon;
int labelWidth;
String tooltip;
public GeneralLink() {
this.label = "";
this.url = "";
this.target = "";
this.onclick = "";
this.icon="";
this.tooltip = "";
}
public void setLabel(String s) {
this.label = s;
}
public String getLabel() {
return this.label;
}
public void setUrl(String s) {
this.url = s;
}
public void setUrl(String servletName,Parameter ... parameter) {
this.url = DataElement._getUrlValue(servletName, parameter);
}
public void addParameter(Parameter ... parameter) {
this.url = DataElement._getUrlValue(this.url, parameter);
}
public String getUrl() {
return this.url;
}
public void setTarget(String s) {
this.target = s;
}
public void setTargetNew(){
this.target = "new";
}
public String getTarget() {
return this.target;
}
public void setOnClick(String s) {
this.onclick = s;
}
public String getOnClick() {
return this.onclick;
}
public String getIcon() {
return this.icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public int getLabelWidth() {
return this.labelWidth;
}
public void setLabelWidth(int labelWidth) {
this.labelWidth = labelWidth;
}
public String getTooltip() {
return this.tooltip;
}
public void setTooltip(String tooltip) {
this.tooltip = tooltip;
}
}