ServizioApplicativoConsegna.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.pdd.monitor;

  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 servizio-applicativo-consegna complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="servizio-applicativo-consegna"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="autorizzazione-integration-manager" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  35.  *          &lt;element name="errore-processamento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="nome" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  37.  *          &lt;element name="sbustamento-soap" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  38.  *          &lt;element name="sbustamento-informazioni-protocollo" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="true"/&gt;
  39.  *          &lt;element name="tipo-consegna" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="data-rispedizione" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  41.  *          &lt;element name="nome-porta" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  42.  *          &lt;element name="coda" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  43.  *          &lt;element name="priorita" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  44.  *          &lt;element name="attesa-esito" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="1" maxOccurs="1" default="false"/&gt;
  45.  *      &lt;/sequence&gt;
  46.  * &lt;/complexType&gt;
  47.  * </pre>
  48.  *
  49.  * @version $Rev$, $Date$
  50.  *
  51.  * @author Poli Andrea (poli@link.it)
  52.  * @author $Author$
  53.  * */

  54. @XmlAccessorType(XmlAccessType.FIELD)
  55. @XmlType(name = "servizio-applicativo-consegna",
  56.   propOrder = {
  57.     "autorizzazioneIntegrationManager",
  58.     "erroreProcessamento",
  59.     "nome",
  60.     "sbustamentoSoap",
  61.     "sbustamentoInformazioniProtocollo",
  62.     "tipoConsegna",
  63.     "dataRispedizione",
  64.     "nomePorta",
  65.     "coda",
  66.     "priorita",
  67.     "attesaEsito"
  68.   }
  69. )

  70. @XmlRootElement(name = "servizio-applicativo-consegna")

  71. public class ServizioApplicativoConsegna extends org.openspcoop2.utils.beans.BaseBeanWithId implements Serializable , Cloneable {
  72.   public ServizioApplicativoConsegna() {
  73.     super();
  74.   }

  75.   public boolean isAutorizzazioneIntegrationManager() {
  76.     return this.autorizzazioneIntegrationManager;
  77.   }

  78.   public boolean getAutorizzazioneIntegrationManager() {
  79.     return this.autorizzazioneIntegrationManager;
  80.   }

  81.   public void setAutorizzazioneIntegrationManager(boolean autorizzazioneIntegrationManager) {
  82.     this.autorizzazioneIntegrationManager = autorizzazioneIntegrationManager;
  83.   }

  84.   public java.lang.String getErroreProcessamento() {
  85.     return this.erroreProcessamento;
  86.   }

  87.   public void setErroreProcessamento(java.lang.String erroreProcessamento) {
  88.     this.erroreProcessamento = erroreProcessamento;
  89.   }

  90.   public java.lang.String getNome() {
  91.     return this.nome;
  92.   }

  93.   public void setNome(java.lang.String nome) {
  94.     this.nome = nome;
  95.   }

  96.   public boolean isSbustamentoSoap() {
  97.     return this.sbustamentoSoap;
  98.   }

  99.   public boolean getSbustamentoSoap() {
  100.     return this.sbustamentoSoap;
  101.   }

  102.   public void setSbustamentoSoap(boolean sbustamentoSoap) {
  103.     this.sbustamentoSoap = sbustamentoSoap;
  104.   }

  105.   public boolean isSbustamentoInformazioniProtocollo() {
  106.     return this.sbustamentoInformazioniProtocollo;
  107.   }

  108.   public boolean getSbustamentoInformazioniProtocollo() {
  109.     return this.sbustamentoInformazioniProtocollo;
  110.   }

  111.   public void setSbustamentoInformazioniProtocollo(boolean sbustamentoInformazioniProtocollo) {
  112.     this.sbustamentoInformazioniProtocollo = sbustamentoInformazioniProtocollo;
  113.   }

  114.   public java.lang.String getTipoConsegna() {
  115.     return this.tipoConsegna;
  116.   }

  117.   public void setTipoConsegna(java.lang.String tipoConsegna) {
  118.     this.tipoConsegna = tipoConsegna;
  119.   }

  120.   public java.util.Date getDataRispedizione() {
  121.     return this.dataRispedizione;
  122.   }

  123.   public void setDataRispedizione(java.util.Date dataRispedizione) {
  124.     this.dataRispedizione = dataRispedizione;
  125.   }

  126.   public java.lang.String getNomePorta() {
  127.     return this.nomePorta;
  128.   }

  129.   public void setNomePorta(java.lang.String nomePorta) {
  130.     this.nomePorta = nomePorta;
  131.   }

  132.   public java.lang.String getCoda() {
  133.     return this.coda;
  134.   }

  135.   public void setCoda(java.lang.String coda) {
  136.     this.coda = coda;
  137.   }

  138.   public java.lang.String getPriorita() {
  139.     return this.priorita;
  140.   }

  141.   public void setPriorita(java.lang.String priorita) {
  142.     this.priorita = priorita;
  143.   }

  144.   public boolean isAttesaEsito() {
  145.     return this.attesaEsito;
  146.   }

  147.   public boolean getAttesaEsito() {
  148.     return this.attesaEsito;
  149.   }

  150.   public void setAttesaEsito(boolean attesaEsito) {
  151.     this.attesaEsito = attesaEsito;
  152.   }

  153.   private static final long serialVersionUID = 1L;



  154.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  155.   @XmlElement(name="autorizzazione-integration-manager",required=true,nillable=false,defaultValue="false")
  156.   protected boolean autorizzazioneIntegrationManager = false;

  157.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  158.   @XmlElement(name="errore-processamento",required=false,nillable=false)
  159.   protected java.lang.String erroreProcessamento;

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

  163.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  164.   @XmlElement(name="sbustamento-soap",required=true,nillable=false,defaultValue="false")
  165.   protected boolean sbustamentoSoap = false;

  166.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  167.   @XmlElement(name="sbustamento-informazioni-protocollo",required=true,nillable=false,defaultValue="true")
  168.   protected boolean sbustamentoInformazioniProtocollo = true;

  169.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  170.   @XmlElement(name="tipo-consegna",required=true,nillable=false)
  171.   protected java.lang.String tipoConsegna;

  172.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  173.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  174.   @XmlElement(name="data-rispedizione",required=true,nillable=false,type=java.lang.String.class)
  175.   protected java.util.Date dataRispedizione;

  176.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  177.   @XmlElement(name="nome-porta",required=true,nillable=false)
  178.   protected java.lang.String nomePorta;

  179.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  180.   @XmlElement(name="coda",required=true,nillable=false)
  181.   protected java.lang.String coda;

  182.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  183.   @XmlElement(name="priorita",required=true,nillable=false)
  184.   protected java.lang.String priorita;

  185.   @javax.xml.bind.annotation.XmlSchemaType(name="boolean")
  186.   @XmlElement(name="attesa-esito",required=true,nillable=false,defaultValue="false")
  187.   protected boolean attesaEsito = false;

  188. }