TipoFiltroAbilitazioneServizi.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.config;

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


  27. /** <p>Java class for tipo-filtro-abilitazione-servizi complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="tipo-filtro-abilitazione-servizi"&gt;
  33.  *      &lt;attribute name="tipo-soggetto-fruitore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  34.  *      &lt;attribute name="soggetto-fruitore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  35.  *      &lt;attribute name="identificativo-porta-fruitore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  36.  *      &lt;attribute name="tipo-soggetto-erogatore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  37.  *      &lt;attribute name="soggetto-erogatore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  38.  *      &lt;attribute name="identificativo-porta-erogatore" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  39.  *      &lt;attribute name="tipo-servizio" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  40.  *      &lt;attribute name="servizio" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  41.  *      &lt;attribute name="versione-servizio" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" use="optional"/&gt;
  42.  *      &lt;attribute name="azione" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  43.  * &lt;/complexType&gt;
  44.  * </pre>
  45.  *
  46.  * @version $Rev$, $Date$
  47.  *
  48.  * @author Poli Andrea (poli@link.it)
  49.  * @author $Author$
  50.  * */

  51. @XmlAccessorType(XmlAccessType.FIELD)
  52. @XmlType(name = "tipo-filtro-abilitazione-servizi")

  53. @XmlRootElement(name = "tipo-filtro-abilitazione-servizi")

  54. public class TipoFiltroAbilitazioneServizi extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  55.   public TipoFiltroAbilitazioneServizi() {
  56.     super();
  57.   }

  58.   public java.lang.String getTipoSoggettoFruitore() {
  59.     return this.tipoSoggettoFruitore;
  60.   }

  61.   public void setTipoSoggettoFruitore(java.lang.String tipoSoggettoFruitore) {
  62.     this.tipoSoggettoFruitore = tipoSoggettoFruitore;
  63.   }

  64.   public java.lang.String getSoggettoFruitore() {
  65.     return this.soggettoFruitore;
  66.   }

  67.   public void setSoggettoFruitore(java.lang.String soggettoFruitore) {
  68.     this.soggettoFruitore = soggettoFruitore;
  69.   }

  70.   public java.lang.String getIdentificativoPortaFruitore() {
  71.     return this.identificativoPortaFruitore;
  72.   }

  73.   public void setIdentificativoPortaFruitore(java.lang.String identificativoPortaFruitore) {
  74.     this.identificativoPortaFruitore = identificativoPortaFruitore;
  75.   }

  76.   public java.lang.String getTipoSoggettoErogatore() {
  77.     return this.tipoSoggettoErogatore;
  78.   }

  79.   public void setTipoSoggettoErogatore(java.lang.String tipoSoggettoErogatore) {
  80.     this.tipoSoggettoErogatore = tipoSoggettoErogatore;
  81.   }

  82.   public java.lang.String getSoggettoErogatore() {
  83.     return this.soggettoErogatore;
  84.   }

  85.   public void setSoggettoErogatore(java.lang.String soggettoErogatore) {
  86.     this.soggettoErogatore = soggettoErogatore;
  87.   }

  88.   public java.lang.String getIdentificativoPortaErogatore() {
  89.     return this.identificativoPortaErogatore;
  90.   }

  91.   public void setIdentificativoPortaErogatore(java.lang.String identificativoPortaErogatore) {
  92.     this.identificativoPortaErogatore = identificativoPortaErogatore;
  93.   }

  94.   public java.lang.String getTipoServizio() {
  95.     return this.tipoServizio;
  96.   }

  97.   public void setTipoServizio(java.lang.String tipoServizio) {
  98.     this.tipoServizio = tipoServizio;
  99.   }

  100.   public java.lang.String getServizio() {
  101.     return this.servizio;
  102.   }

  103.   public void setServizio(java.lang.String servizio) {
  104.     this.servizio = servizio;
  105.   }

  106.   public java.lang.Integer getVersioneServizio() {
  107.     return this.versioneServizio;
  108.   }

  109.   public void setVersioneServizio(java.lang.Integer versioneServizio) {
  110.     this.versioneServizio = versioneServizio;
  111.   }

  112.   public java.lang.String getAzione() {
  113.     return this.azione;
  114.   }

  115.   public void setAzione(java.lang.String azione) {
  116.     this.azione = azione;
  117.   }

  118.   private static final long serialVersionUID = 1L;



  119.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  120.   @XmlAttribute(name="tipo-soggetto-fruitore",required=false)
  121.   protected java.lang.String tipoSoggettoFruitore;

  122.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  123.   @XmlAttribute(name="soggetto-fruitore",required=false)
  124.   protected java.lang.String soggettoFruitore;

  125.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  126.   @XmlAttribute(name="identificativo-porta-fruitore",required=false)
  127.   protected java.lang.String identificativoPortaFruitore;

  128.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  129.   @XmlAttribute(name="tipo-soggetto-erogatore",required=false)
  130.   protected java.lang.String tipoSoggettoErogatore;

  131.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  132.   @XmlAttribute(name="soggetto-erogatore",required=false)
  133.   protected java.lang.String soggettoErogatore;

  134.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  135.   @XmlAttribute(name="identificativo-porta-erogatore",required=false)
  136.   protected java.lang.String identificativoPortaErogatore;

  137.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  138.   @XmlAttribute(name="tipo-servizio",required=false)
  139.   protected java.lang.String tipoServizio;

  140.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  141.   @XmlAttribute(name="servizio",required=false)
  142.   protected java.lang.String servizio;

  143.   @javax.xml.bind.annotation.XmlSchemaType(name="unsignedInt")
  144.   @XmlAttribute(name="versione-servizio",required=false)
  145.   protected java.lang.Integer versioneServizio;

  146.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  147.   @XmlAttribute(name="azione",required=false)
  148.   protected java.lang.String azione;

  149. }