RicevutaConsegnaType.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 RicevutaConsegna_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="RicevutaConsegna_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="DataOraRicezione" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="DataOraConsegna" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="Destinatario" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}Destinatario_Type" minOccurs="0" maxOccurs="1"/&gt;
  40.  *          &lt;element name="RiferimentoArchivio" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}RiferimentoArchivio_Type" minOccurs="0" maxOccurs="1"/&gt;
  41.  *          &lt;element name="MessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  42.  *          &lt;element name="PecMessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  43.  *          &lt;element name="Note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  44.  *      &lt;/sequence&gt;
  45.  *      &lt;attribute name="versione" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" use="required"/&gt;
  46.  *      &lt;attribute name="IntermediarioConDupliceRuolo" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&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 = "RicevutaConsegna_Type",
  57.   propOrder = {
  58.     "identificativoSdI",
  59.     "nomeFile",
  60.     "dataOraRicezione",
  61.     "dataOraConsegna",
  62.     "destinatario",
  63.     "riferimentoArchivio",
  64.     "messageId",
  65.     "pecMessageId",
  66.     "note"
  67.   }
  68. )

  69. @XmlRootElement(name = "RicevutaConsegna_Type")

  70. public class RicevutaConsegnaType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  71.   public RicevutaConsegnaType() {
  72.     super();
  73.   }

  74.   public java.lang.String getIdentificativoSdI() {
  75.     return this.identificativoSdI;
  76.   }

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

  80.   public java.lang.String getNomeFile() {
  81.     return this.nomeFile;
  82.   }

  83.   public void setNomeFile(java.lang.String nomeFile) {
  84.     this.nomeFile = nomeFile;
  85.   }

  86.   public java.util.Date getDataOraRicezione() {
  87.     return this.dataOraRicezione;
  88.   }

  89.   public void setDataOraRicezione(java.util.Date dataOraRicezione) {
  90.     this.dataOraRicezione = dataOraRicezione;
  91.   }

  92.   public java.util.Date getDataOraConsegna() {
  93.     return this.dataOraConsegna;
  94.   }

  95.   public void setDataOraConsegna(java.util.Date dataOraConsegna) {
  96.     this.dataOraConsegna = dataOraConsegna;
  97.   }

  98.   public DestinatarioType getDestinatario() {
  99.     return this.destinatario;
  100.   }

  101.   public void setDestinatario(DestinatarioType destinatario) {
  102.     this.destinatario = destinatario;
  103.   }

  104.   public RiferimentoArchivioType getRiferimentoArchivio() {
  105.     return this.riferimentoArchivio;
  106.   }

  107.   public void setRiferimentoArchivio(RiferimentoArchivioType riferimentoArchivio) {
  108.     this.riferimentoArchivio = riferimentoArchivio;
  109.   }

  110.   public java.lang.String getMessageId() {
  111.     return this.messageId;
  112.   }

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

  116.   public java.lang.String getPecMessageId() {
  117.     return this.pecMessageId;
  118.   }

  119.   public void setPecMessageId(java.lang.String pecMessageId) {
  120.     this.pecMessageId = pecMessageId;
  121.   }

  122.   public java.lang.String getNote() {
  123.     return this.note;
  124.   }

  125.   public void setNote(java.lang.String note) {
  126.     this.note = note;
  127.   }

  128.   public java.lang.String getVersione() {
  129.     return this.versione;
  130.   }

  131.   public void setVersione(java.lang.String versione) {
  132.     this.versione = versione;
  133.   }

  134.   public java.lang.String getIntermediarioConDupliceRuolo() {
  135.     return this.intermediarioConDupliceRuolo;
  136.   }

  137.   public void setIntermediarioConDupliceRuolo(java.lang.String intermediarioConDupliceRuolo) {
  138.     this.intermediarioConDupliceRuolo = intermediarioConDupliceRuolo;
  139.   }

  140.   private static final long serialVersionUID = 1L;

  141.   private static it.gov.fatturapa.sdi.messaggi.v1_0.model.RicevutaConsegnaTypeModel modelStaticInstance = null;
  142.   private static synchronized void initModelStaticInstance(){
  143.       if(it.gov.fatturapa.sdi.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance==null){
  144.             it.gov.fatturapa.sdi.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance = new it.gov.fatturapa.sdi.messaggi.v1_0.model.RicevutaConsegnaTypeModel();
  145.       }
  146.   }
  147.   public static it.gov.fatturapa.sdi.messaggi.v1_0.model.RicevutaConsegnaTypeModel model(){
  148.       if(it.gov.fatturapa.sdi.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance==null){
  149.             initModelStaticInstance();
  150.       }
  151.       return it.gov.fatturapa.sdi.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance;
  152.   }


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

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

  159.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  160.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  161.   @XmlElement(name="DataOraRicezione",required=true,nillable=false,type=java.lang.String.class)
  162.   protected java.util.Date dataOraRicezione;

  163.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  164.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  165.   @XmlElement(name="DataOraConsegna",required=true,nillable=false,type=java.lang.String.class)
  166.   protected java.util.Date dataOraConsegna;

  167.   @XmlElement(name="Destinatario",required=false,nillable=false)
  168.   protected DestinatarioType destinatario;

  169.   @XmlElement(name="RiferimentoArchivio",required=false,nillable=false)
  170.   protected RiferimentoArchivioType riferimentoArchivio;

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

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

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

  180.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  181.   @XmlAttribute(name="versione",required=true)
  182.   protected java.lang.String versione;

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

  186. }