DescriptionType.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.protocol.information_missing;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openspcoop2.protocol.information_missing.constants.DescriptionItemType;
import java.io.Serializable;
/** <p>Java class for DescriptionType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="DescriptionType">
* <attribute name="tipo" type="{http://www.openspcoop2.org/protocol/information_missing}DescriptionItemType" use="required"/>
* <attribute name="valore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/>
* <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/>
* <attribute name="bold" type="{http://www.w3.org/2001/XMLSchema}boolean" use="optional" default="false"/>
* </complexType>
* </pre>
*
* @version $Rev$, $Date$
*
* @author Poli Andrea (poli@link.it)
* @author $Author$
* */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescriptionType")
@XmlRootElement(name = "DescriptionType")
public class DescriptionType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
public DescriptionType() {
super();
}
public void setTipoRawEnumValue(String value) {
this.tipo = (DescriptionItemType) DescriptionItemType.toEnumConstantFromString(value);
}
public String getTipoRawEnumValue() {
if(this.tipo == null){
return null;
}else{
return this.tipo.toString();
}
}
public org.openspcoop2.protocol.information_missing.constants.DescriptionItemType getTipo() {
return this.tipo;
}
public void setTipo(org.openspcoop2.protocol.information_missing.constants.DescriptionItemType tipo) {
this.tipo = tipo;
}
public java.lang.String getValore() {
return this.valore;
}
public void setValore(java.lang.String valore) {
this.valore = valore;
}
public java.lang.String getLabel() {
return this.label;
}
public void setLabel(java.lang.String label) {
this.label = label;
}
public boolean isBold() {
return this.bold;
}
public boolean getBold() {
return this.bold;
}
public void setBold(boolean bold) {
this.bold = bold;
}
private static final long serialVersionUID = 1L;
@javax.xml.bind.annotation.XmlTransient
protected java.lang.String tipoRawEnumValue;
@XmlAttribute(name="tipo",required=true)
protected DescriptionItemType tipo;
@javax.xml.bind.annotation.XmlSchemaType(name="string")
@XmlAttribute(name="valore",required=false)
protected java.lang.String valore;
@javax.xml.bind.annotation.XmlSchemaType(name="string")
@XmlAttribute(name="label",required=false)
protected java.lang.String label;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlAttribute(name="bold",required=false)
protected boolean bold = false;
}