AttivazionePolicyRaggruppamento.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package org.openspcoop2.core.controllo_traffico;

  21. import javax.xml.bind.annotation.XmlAccessType;
  22. import javax.xml.bind.annotation.XmlAccessorType;
  23. import javax.xml.bind.annotation.XmlElement;
  24. import javax.xml.bind.annotation.XmlRootElement;
  25. import javax.xml.bind.annotation.XmlType;
  26. import java.io.Serializable;


  27. /** <p>Java class for attivazione-policy-raggruppamento complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="attivazione-policy-raggruppamento"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  35.  *          &lt;element name="ruolo-porta" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  36.  *          &lt;element name="protocollo" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  37.  *          &lt;element name="fruitore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  38.  *          &lt;element name="servizio-applicativo-fruitore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  39.  *          &lt;element name="identificativo-autenticato" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  40.  *          &lt;element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  41.  *          &lt;element name="erogatore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  42.  *          &lt;element name="servizio-applicativo-erogatore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  43.  *          &lt;element name="servizio" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  44.  *          &lt;element name="azione" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  45.  *          &lt;element name="informazione-applicativa-enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  46.  *          &lt;element name="informazione-applicativa-tipo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  47.  *          &lt;element name="informazione-applicativa-nome" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  48.  *      &lt;/sequence&gt;
  49.  * &lt;/complexType&gt;
  50.  * </pre>
  51.  *
  52.  * @version $Rev$, $Date$
  53.  *
  54.  * @author Poli Andrea (poli@link.it)
  55.  * @author $Author$
  56.  * */

  57. @XmlAccessorType(XmlAccessType.FIELD)
  58. @XmlType(name = "attivazione-policy-raggruppamento",
  59.   propOrder = {
  60.     "enabled",
  61.     "ruoloPorta",
  62.     "protocollo",
  63.     "fruitore",
  64.     "servizioApplicativoFruitore",
  65.     "identificativoAutenticato",
  66.     "token",
  67.     "erogatore",
  68.     "servizioApplicativoErogatore",
  69.     "servizio",
  70.     "azione",
  71.     "informazioneApplicativaEnabled",
  72.     "informazioneApplicativaTipo",
  73.     "informazioneApplicativaNome"
  74.   }
  75. )

  76. @XmlRootElement(name = "attivazione-policy-raggruppamento")

  77. public class AttivazionePolicyRaggruppamento extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  78.   public AttivazionePolicyRaggruppamento() {
  79.     super();
  80.   }

  81.   public boolean isEnabled() {
  82.     return this.enabled;
  83.   }

  84.   public boolean getEnabled() {
  85.     return this.enabled;
  86.   }

  87.   public void setEnabled(boolean enabled) {
  88.     this.enabled = enabled;
  89.   }

  90.   public boolean isRuoloPorta() {
  91.     return this.ruoloPorta;
  92.   }

  93.   public boolean getRuoloPorta() {
  94.     return this.ruoloPorta;
  95.   }

  96.   public void setRuoloPorta(boolean ruoloPorta) {
  97.     this.ruoloPorta = ruoloPorta;
  98.   }

  99.   public boolean isProtocollo() {
  100.     return this.protocollo;
  101.   }

  102.   public boolean getProtocollo() {
  103.     return this.protocollo;
  104.   }

  105.   public void setProtocollo(boolean protocollo) {
  106.     this.protocollo = protocollo;
  107.   }

  108.   public boolean isFruitore() {
  109.     return this.fruitore;
  110.   }

  111.   public boolean getFruitore() {
  112.     return this.fruitore;
  113.   }

  114.   public void setFruitore(boolean fruitore) {
  115.     this.fruitore = fruitore;
  116.   }

  117.   public boolean isServizioApplicativoFruitore() {
  118.     return this.servizioApplicativoFruitore;
  119.   }

  120.   public boolean getServizioApplicativoFruitore() {
  121.     return this.servizioApplicativoFruitore;
  122.   }

  123.   public void setServizioApplicativoFruitore(boolean servizioApplicativoFruitore) {
  124.     this.servizioApplicativoFruitore = servizioApplicativoFruitore;
  125.   }

  126.   public boolean isIdentificativoAutenticato() {
  127.     return this.identificativoAutenticato;
  128.   }

  129.   public boolean getIdentificativoAutenticato() {
  130.     return this.identificativoAutenticato;
  131.   }

  132.   public void setIdentificativoAutenticato(boolean identificativoAutenticato) {
  133.     this.identificativoAutenticato = identificativoAutenticato;
  134.   }

  135.   public java.lang.String getToken() {
  136.     return this.token;
  137.   }

  138.   public void setToken(java.lang.String token) {
  139.     this.token = token;
  140.   }

  141.   public boolean isErogatore() {
  142.     return this.erogatore;
  143.   }

  144.   public boolean getErogatore() {
  145.     return this.erogatore;
  146.   }

  147.   public void setErogatore(boolean erogatore) {
  148.     this.erogatore = erogatore;
  149.   }

  150.   public boolean isServizioApplicativoErogatore() {
  151.     return this.servizioApplicativoErogatore;
  152.   }

  153.   public boolean getServizioApplicativoErogatore() {
  154.     return this.servizioApplicativoErogatore;
  155.   }

  156.   public void setServizioApplicativoErogatore(boolean servizioApplicativoErogatore) {
  157.     this.servizioApplicativoErogatore = servizioApplicativoErogatore;
  158.   }

  159.   public boolean isServizio() {
  160.     return this.servizio;
  161.   }

  162.   public boolean getServizio() {
  163.     return this.servizio;
  164.   }

  165.   public void setServizio(boolean servizio) {
  166.     this.servizio = servizio;
  167.   }

  168.   public boolean isAzione() {
  169.     return this.azione;
  170.   }

  171.   public boolean getAzione() {
  172.     return this.azione;
  173.   }

  174.   public void setAzione(boolean azione) {
  175.     this.azione = azione;
  176.   }

  177.   public boolean isInformazioneApplicativaEnabled() {
  178.     return this.informazioneApplicativaEnabled;
  179.   }

  180.   public boolean getInformazioneApplicativaEnabled() {
  181.     return this.informazioneApplicativaEnabled;
  182.   }

  183.   public void setInformazioneApplicativaEnabled(boolean informazioneApplicativaEnabled) {
  184.     this.informazioneApplicativaEnabled = informazioneApplicativaEnabled;
  185.   }

  186.   public java.lang.String getInformazioneApplicativaTipo() {
  187.     return this.informazioneApplicativaTipo;
  188.   }

  189.   public void setInformazioneApplicativaTipo(java.lang.String informazioneApplicativaTipo) {
  190.     this.informazioneApplicativaTipo = informazioneApplicativaTipo;
  191.   }

  192.   public java.lang.String getInformazioneApplicativaNome() {
  193.     return this.informazioneApplicativaNome;
  194.   }

  195.   public void setInformazioneApplicativaNome(java.lang.String informazioneApplicativaNome) {
  196.     this.informazioneApplicativaNome = informazioneApplicativaNome;
  197.   }

  198.   private static final long serialVersionUID = 1L;



  199.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  200.   @XmlElement(name="enabled",required=true,nillable=false,defaultValue="false")
  201.   protected boolean enabled = false;

  202.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  203.   @XmlElement(name="ruolo-porta",required=true,nillable=false,defaultValue="false")
  204.   protected boolean ruoloPorta = false;

  205.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  206.   @XmlElement(name="protocollo",required=true,nillable=false,defaultValue="false")
  207.   protected boolean protocollo = false;

  208.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  209.   @XmlElement(name="fruitore",required=true,nillable=false,defaultValue="false")
  210.   protected boolean fruitore = false;

  211.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  212.   @XmlElement(name="servizio-applicativo-fruitore",required=true,nillable=false,defaultValue="false")
  213.   protected boolean servizioApplicativoFruitore = false;

  214.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  215.   @XmlElement(name="identificativo-autenticato",required=true,nillable=false,defaultValue="false")
  216.   protected boolean identificativoAutenticato = false;

  217.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  218.   @XmlElement(name="token",required=false,nillable=false)
  219.   protected java.lang.String token;

  220.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  221.   @XmlElement(name="erogatore",required=true,nillable=false,defaultValue="false")
  222.   protected boolean erogatore = false;

  223.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  224.   @XmlElement(name="servizio-applicativo-erogatore",required=true,nillable=false,defaultValue="false")
  225.   protected boolean servizioApplicativoErogatore = false;

  226.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  227.   @XmlElement(name="servizio",required=true,nillable=false,defaultValue="false")
  228.   protected boolean servizio = false;

  229.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  230.   @XmlElement(name="azione",required=true,nillable=false,defaultValue="false")
  231.   protected boolean azione = false;

  232.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  233.   @XmlElement(name="informazione-applicativa-enabled",required=true,nillable=false,defaultValue="false")
  234.   protected boolean informazioneApplicativaEnabled = false;

  235.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  236.   @XmlElement(name="informazione-applicativa-tipo",required=false,nillable=false)
  237.   protected java.lang.String informazioneApplicativaTipo;

  238.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  239.   @XmlElement(name="informazione-applicativa-nome",required=false,nillable=false)
  240.   protected java.lang.String informazioneApplicativaNome;

  241. }