ConfigurazioneFiltro.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.plugins;

  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 configurazione-filtro complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="configurazione-filtro"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="nome" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="descrizione" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="tipo-mittente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="nome-mittente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  38.  *          &lt;element name="idporta-mittente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  39.  *          &lt;element name="tipo-destinatario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  40.  *          &lt;element name="nome-destinatario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  41.  *          &lt;element name="idporta-destinatario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  42.  *          &lt;element name="tipo-servizio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  43.  *          &lt;element name="nome-servizio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  44.  *          &lt;element name="versione-servizio" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0" maxOccurs="1" default="1"/&gt;
  45.  *          &lt;element name="azione" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  46.  *      &lt;/sequence&gt;
  47.  * &lt;/complexType&gt;
  48.  * </pre>
  49.  *
  50.  * @version $Rev$, $Date$
  51.  *
  52.  * @author Poli Andrea (poli@link.it)
  53.  * @author $Author$
  54.  * */

  55. @XmlAccessorType(XmlAccessType.FIELD)
  56. @XmlType(name = "configurazione-filtro",
  57.   propOrder = {
  58.     "nome",
  59.     "descrizione",
  60.     "tipoMittente",
  61.     "nomeMittente",
  62.     "idportaMittente",
  63.     "tipoDestinatario",
  64.     "nomeDestinatario",
  65.     "idportaDestinatario",
  66.     "tipoServizio",
  67.     "nomeServizio",
  68.     "versioneServizio",
  69.     "azione"
  70.   }
  71. )

  72. @XmlRootElement(name = "configurazione-filtro")

  73. public class ConfigurazioneFiltro extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  74.   public ConfigurazioneFiltro() {
  75.     super();
  76.   }

  77.   public java.lang.String getNome() {
  78.     return this.nome;
  79.   }

  80.   public void setNome(java.lang.String nome) {
  81.     this.nome = nome;
  82.   }

  83.   public java.lang.String getDescrizione() {
  84.     return this.descrizione;
  85.   }

  86.   public void setDescrizione(java.lang.String descrizione) {
  87.     this.descrizione = descrizione;
  88.   }

  89.   public java.lang.String getTipoMittente() {
  90.     return this.tipoMittente;
  91.   }

  92.   public void setTipoMittente(java.lang.String tipoMittente) {
  93.     this.tipoMittente = tipoMittente;
  94.   }

  95.   public java.lang.String getNomeMittente() {
  96.     return this.nomeMittente;
  97.   }

  98.   public void setNomeMittente(java.lang.String nomeMittente) {
  99.     this.nomeMittente = nomeMittente;
  100.   }

  101.   public java.lang.String getIdportaMittente() {
  102.     return this.idportaMittente;
  103.   }

  104.   public void setIdportaMittente(java.lang.String idportaMittente) {
  105.     this.idportaMittente = idportaMittente;
  106.   }

  107.   public java.lang.String getTipoDestinatario() {
  108.     return this.tipoDestinatario;
  109.   }

  110.   public void setTipoDestinatario(java.lang.String tipoDestinatario) {
  111.     this.tipoDestinatario = tipoDestinatario;
  112.   }

  113.   public java.lang.String getNomeDestinatario() {
  114.     return this.nomeDestinatario;
  115.   }

  116.   public void setNomeDestinatario(java.lang.String nomeDestinatario) {
  117.     this.nomeDestinatario = nomeDestinatario;
  118.   }

  119.   public java.lang.String getIdportaDestinatario() {
  120.     return this.idportaDestinatario;
  121.   }

  122.   public void setIdportaDestinatario(java.lang.String idportaDestinatario) {
  123.     this.idportaDestinatario = idportaDestinatario;
  124.   }

  125.   public java.lang.String getTipoServizio() {
  126.     return this.tipoServizio;
  127.   }

  128.   public void setTipoServizio(java.lang.String tipoServizio) {
  129.     this.tipoServizio = tipoServizio;
  130.   }

  131.   public java.lang.String getNomeServizio() {
  132.     return this.nomeServizio;
  133.   }

  134.   public void setNomeServizio(java.lang.String nomeServizio) {
  135.     this.nomeServizio = nomeServizio;
  136.   }

  137.   public java.lang.Integer getVersioneServizio() {
  138.     return this.versioneServizio;
  139.   }

  140.   public void setVersioneServizio(java.lang.Integer versioneServizio) {
  141.     this.versioneServizio = versioneServizio;
  142.   }

  143.   public java.lang.String getAzione() {
  144.     return this.azione;
  145.   }

  146.   public void setAzione(java.lang.String azione) {
  147.     this.azione = azione;
  148.   }

  149.   private static final long serialVersionUID = 1L;

  150.   private static org.openspcoop2.core.plugins.model.ConfigurazioneFiltroModel modelStaticInstance = null;
  151.   private static synchronized void initModelStaticInstance(){
  152.       if(org.openspcoop2.core.plugins.ConfigurazioneFiltro.modelStaticInstance==null){
  153.             org.openspcoop2.core.plugins.ConfigurazioneFiltro.modelStaticInstance = new org.openspcoop2.core.plugins.model.ConfigurazioneFiltroModel();
  154.       }
  155.   }
  156.   public static org.openspcoop2.core.plugins.model.ConfigurazioneFiltroModel model(){
  157.       if(org.openspcoop2.core.plugins.ConfigurazioneFiltro.modelStaticInstance==null){
  158.             initModelStaticInstance();
  159.       }
  160.       return org.openspcoop2.core.plugins.ConfigurazioneFiltro.modelStaticInstance;
  161.   }


  162.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  163.   @XmlElement(name="nome",required=true,nillable=false)
  164.   protected java.lang.String nome;

  165.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  166.   @XmlElement(name="descrizione",required=false,nillable=false)
  167.   protected java.lang.String descrizione;

  168.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  169.   @XmlElement(name="tipo-mittente",required=false,nillable=false)
  170.   protected java.lang.String tipoMittente;

  171.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  172.   @XmlElement(name="nome-mittente",required=false,nillable=false)
  173.   protected java.lang.String nomeMittente;

  174.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  175.   @XmlElement(name="idporta-mittente",required=false,nillable=false)
  176.   protected java.lang.String idportaMittente;

  177.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  178.   @XmlElement(name="tipo-destinatario",required=false,nillable=false)
  179.   protected java.lang.String tipoDestinatario;

  180.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  181.   @XmlElement(name="nome-destinatario",required=false,nillable=false)
  182.   protected java.lang.String nomeDestinatario;

  183.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  184.   @XmlElement(name="idporta-destinatario",required=false,nillable=false)
  185.   protected java.lang.String idportaDestinatario;

  186.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  187.   @XmlElement(name="tipo-servizio",required=false,nillable=false)
  188.   protected java.lang.String tipoServizio;

  189.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  190.   @XmlElement(name="nome-servizio",required=false,nillable=false)
  191.   protected java.lang.String nomeServizio;

  192.   @javax.xml.bind.annotation.XmlSchemaType(name="unsignedInt")
  193.   @XmlElement(name="versione-servizio",required=false,nillable=false,defaultValue="1")
  194.   protected java.lang.Integer versioneServizio = java.lang.Integer.valueOf("1");

  195.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  196.   @XmlElement(name="azione",required=false,nillable=false)
  197.   protected java.lang.String azione;

  198. }