AllarmeRaggruppamento.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.core.allarmi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import java.io.Serializable;
/** <p>Java class for allarme-raggruppamento complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="allarme-raggruppamento">
* <sequence>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="ruolo-porta" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="protocollo" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="fruitore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="servizio-applicativo-fruitore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="identificativo-autenticato" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/>
* <element name="erogatore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="servizio" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* <element name="azione" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/>
* </sequence>
* </complexType>
* </pre>
*
* @version $Rev$, $Date$
*
* @author Poli Andrea (poli@link.it)
* @author $Author$
* */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "allarme-raggruppamento",
propOrder = {
"enabled",
"ruoloPorta",
"protocollo",
"fruitore",
"servizioApplicativoFruitore",
"identificativoAutenticato",
"token",
"erogatore",
"servizio",
"azione"
}
)
@XmlRootElement(name = "allarme-raggruppamento")
public class AllarmeRaggruppamento extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
public AllarmeRaggruppamento() {
super();
}
public boolean isEnabled() {
return this.enabled;
}
public boolean getEnabled() {
return this.enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public boolean isRuoloPorta() {
return this.ruoloPorta;
}
public boolean getRuoloPorta() {
return this.ruoloPorta;
}
public void setRuoloPorta(boolean ruoloPorta) {
this.ruoloPorta = ruoloPorta;
}
public boolean isProtocollo() {
return this.protocollo;
}
public boolean getProtocollo() {
return this.protocollo;
}
public void setProtocollo(boolean protocollo) {
this.protocollo = protocollo;
}
public boolean isFruitore() {
return this.fruitore;
}
public boolean getFruitore() {
return this.fruitore;
}
public void setFruitore(boolean fruitore) {
this.fruitore = fruitore;
}
public boolean isServizioApplicativoFruitore() {
return this.servizioApplicativoFruitore;
}
public boolean getServizioApplicativoFruitore() {
return this.servizioApplicativoFruitore;
}
public void setServizioApplicativoFruitore(boolean servizioApplicativoFruitore) {
this.servizioApplicativoFruitore = servizioApplicativoFruitore;
}
public boolean isIdentificativoAutenticato() {
return this.identificativoAutenticato;
}
public boolean getIdentificativoAutenticato() {
return this.identificativoAutenticato;
}
public void setIdentificativoAutenticato(boolean identificativoAutenticato) {
this.identificativoAutenticato = identificativoAutenticato;
}
public java.lang.String getToken() {
return this.token;
}
public void setToken(java.lang.String token) {
this.token = token;
}
public boolean isErogatore() {
return this.erogatore;
}
public boolean getErogatore() {
return this.erogatore;
}
public void setErogatore(boolean erogatore) {
this.erogatore = erogatore;
}
public boolean isServizio() {
return this.servizio;
}
public boolean getServizio() {
return this.servizio;
}
public void setServizio(boolean servizio) {
this.servizio = servizio;
}
public boolean isAzione() {
return this.azione;
}
public boolean getAzione() {
return this.azione;
}
public void setAzione(boolean azione) {
this.azione = azione;
}
private static final long serialVersionUID = 1L;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="enabled",required=true,nillable=false,defaultValue="false")
protected boolean enabled = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="ruolo-porta",required=true,nillable=false,defaultValue="false")
protected boolean ruoloPorta = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="protocollo",required=true,nillable=false,defaultValue="false")
protected boolean protocollo = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="fruitore",required=true,nillable=false,defaultValue="false")
protected boolean fruitore = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="servizio-applicativo-fruitore",required=true,nillable=false,defaultValue="false")
protected boolean servizioApplicativoFruitore = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="identificativo-autenticato",required=true,nillable=false,defaultValue="false")
protected boolean identificativoAutenticato = false;
@javax.xml.bind.annotation.XmlSchemaType(name="string")
@XmlElement(name="token",required=false,nillable=false)
protected java.lang.String token;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="erogatore",required=true,nillable=false,defaultValue="false")
protected boolean erogatore = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="servizio",required=true,nillable=false,defaultValue="false")
protected boolean servizio = false;
@javax.xml.bind.annotation.XmlSchemaType(name="boolean")
@XmlElement(name="azione",required=true,nillable=false,defaultValue="false")
protected boolean azione = false;
}