NotificaEsitoType.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 it.gov.fatturapa.sdi.messaggi.v1_0;

  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.XmlElement;
  25. import javax.xml.bind.annotation.XmlRootElement;
  26. import javax.xml.bind.annotation.XmlType;
  27. import java.io.Serializable;


  28. /** <p>Java class for NotificaEsito_Type complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="NotificaEsito_Type"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="IdentificativoSdI" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="NomeFile" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  37.  *          &lt;element name="EsitoCommittente" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}NotificaEsitoCommittente_Type" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="MessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="PecMessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  40.  *          &lt;element name="Note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  41.  *      &lt;/sequence&gt;
  42.  *      &lt;attribute name="versione" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" use="required"/&gt;
  43.  *      &lt;attribute name="IntermediarioConDupliceRuolo" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  44.  * &lt;/complexType&gt;
  45.  * </pre>
  46.  *
  47.  * @version $Rev$, $Date$
  48.  *
  49.  * @author Poli Andrea (poli@link.it)
  50.  * @author $Author$
  51.  * */

  52. @XmlAccessorType(XmlAccessType.FIELD)
  53. @XmlType(name = "NotificaEsito_Type",
  54.   propOrder = {
  55.     "identificativoSdI",
  56.     "nomeFile",
  57.     "esitoCommittente",
  58.     "messageId",
  59.     "pecMessageId",
  60.     "note"
  61.   }
  62. )

  63. @XmlRootElement(name = "NotificaEsito_Type")

  64. public class NotificaEsitoType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  65.   public NotificaEsitoType() {
  66.     super();
  67.   }

  68.   public java.lang.String getIdentificativoSdI() {
  69.     return this.identificativoSdI;
  70.   }

  71.   public void setIdentificativoSdI(java.lang.String identificativoSdI) {
  72.     this.identificativoSdI = identificativoSdI;
  73.   }

  74.   public java.lang.String getNomeFile() {
  75.     return this.nomeFile;
  76.   }

  77.   public void setNomeFile(java.lang.String nomeFile) {
  78.     this.nomeFile = nomeFile;
  79.   }

  80.   public NotificaEsitoCommittenteType getEsitoCommittente() {
  81.     return this.esitoCommittente;
  82.   }

  83.   public void setEsitoCommittente(NotificaEsitoCommittenteType esitoCommittente) {
  84.     this.esitoCommittente = esitoCommittente;
  85.   }

  86.   public java.lang.String getMessageId() {
  87.     return this.messageId;
  88.   }

  89.   public void setMessageId(java.lang.String messageId) {
  90.     this.messageId = messageId;
  91.   }

  92.   public java.lang.String getPecMessageId() {
  93.     return this.pecMessageId;
  94.   }

  95.   public void setPecMessageId(java.lang.String pecMessageId) {
  96.     this.pecMessageId = pecMessageId;
  97.   }

  98.   public java.lang.String getNote() {
  99.     return this.note;
  100.   }

  101.   public void setNote(java.lang.String note) {
  102.     this.note = note;
  103.   }

  104.   public java.lang.String getVersione() {
  105.     return this.versione;
  106.   }

  107.   public void setVersione(java.lang.String versione) {
  108.     this.versione = versione;
  109.   }

  110.   public java.lang.String getIntermediarioConDupliceRuolo() {
  111.     return this.intermediarioConDupliceRuolo;
  112.   }

  113.   public void setIntermediarioConDupliceRuolo(java.lang.String intermediarioConDupliceRuolo) {
  114.     this.intermediarioConDupliceRuolo = intermediarioConDupliceRuolo;
  115.   }

  116.   private static final long serialVersionUID = 1L;

  117.   private static it.gov.fatturapa.sdi.messaggi.v1_0.model.NotificaEsitoTypeModel modelStaticInstance = null;
  118.   private static synchronized void initModelStaticInstance(){
  119.       if(it.gov.fatturapa.sdi.messaggi.v1_0.NotificaEsitoType.modelStaticInstance==null){
  120.             it.gov.fatturapa.sdi.messaggi.v1_0.NotificaEsitoType.modelStaticInstance = new it.gov.fatturapa.sdi.messaggi.v1_0.model.NotificaEsitoTypeModel();
  121.       }
  122.   }
  123.   public static it.gov.fatturapa.sdi.messaggi.v1_0.model.NotificaEsitoTypeModel model(){
  124.       if(it.gov.fatturapa.sdi.messaggi.v1_0.NotificaEsitoType.modelStaticInstance==null){
  125.             initModelStaticInstance();
  126.       }
  127.       return it.gov.fatturapa.sdi.messaggi.v1_0.NotificaEsitoType.modelStaticInstance;
  128.   }


  129.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  130.   @XmlElement(name="IdentificativoSdI",required=true,nillable=false)
  131.   protected java.lang.String identificativoSdI;

  132.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  133.   @XmlElement(name="NomeFile",required=true,nillable=false)
  134.   protected java.lang.String nomeFile;

  135.   @XmlElement(name="EsitoCommittente",required=true,nillable=false)
  136.   protected NotificaEsitoCommittenteType esitoCommittente;

  137.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  138.   @XmlElement(name="MessageId",required=true,nillable=false)
  139.   protected java.lang.String messageId;

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

  143.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  144.   @XmlElement(name="Note",required=false,nillable=false)
  145.   protected java.lang.String note;

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

  149.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  150.   @XmlAttribute(name="IntermediarioConDupliceRuolo",required=false)
  151.   protected java.lang.String intermediarioConDupliceRuolo;

  152. }