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.agenziaentrate.ivaservizi.docs.xsd.fattura.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://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="NomeFile" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  37.  *          &lt;element name="Hash" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="DataOraRicezione" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="DataOraConsegna" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="Destinatario" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}Destinatario_Type" minOccurs="1" maxOccurs="1"/&gt;
  41.  *          &lt;element name="RiferimentoArchivio" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}RiferimentoArchivio_Type" minOccurs="0" maxOccurs="1"/&gt;
  42.  *          &lt;element name="MessageId" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  43.  *          &lt;element name="PecMessageId" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  44.  *          &lt;element name="Note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  45.  *      &lt;/sequence&gt;
  46.  *      &lt;attribute name="versione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" use="required"/&gt;
  47.  *      &lt;attribute name="FlussoSemplificato" type="{http://www.w3.org/2001/XMLSchema}string" use="optional"/&gt;
  48.  * &lt;/complexType&gt;
  49.  * </pre>
  50.  *
  51.  * @version $Rev$, $Date$
  52.  *
  53.  * @author Poli Andrea (poli@link.it)
  54.  * @author $Author$
  55.  * */

  56. @XmlAccessorType(XmlAccessType.FIELD)
  57. @XmlType(name = "RicevutaConsegna_Type",
  58.   propOrder = {
  59.     "identificativoSdI",
  60.     "nomeFile",
  61.     "hash",
  62.     "dataOraRicezione",
  63.     "dataOraConsegna",
  64.     "destinatario",
  65.     "riferimentoArchivio",
  66.     "messageId",
  67.     "pecMessageId",
  68.     "note"
  69.   }
  70. )

  71. @XmlRootElement(name = "RicevutaConsegna_Type")

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

  76.   public java.lang.String getIdentificativoSdI() {
  77.     return this.identificativoSdI;
  78.   }

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

  82.   public java.lang.String getNomeFile() {
  83.     return this.nomeFile;
  84.   }

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

  88.   public java.lang.String getHash() {
  89.     return this.hash;
  90.   }

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

  94.   public java.util.Date getDataOraRicezione() {
  95.     return this.dataOraRicezione;
  96.   }

  97.   public void setDataOraRicezione(java.util.Date dataOraRicezione) {
  98.     this.dataOraRicezione = dataOraRicezione;
  99.   }

  100.   public java.util.Date getDataOraConsegna() {
  101.     return this.dataOraConsegna;
  102.   }

  103.   public void setDataOraConsegna(java.util.Date dataOraConsegna) {
  104.     this.dataOraConsegna = dataOraConsegna;
  105.   }

  106.   public DestinatarioType getDestinatario() {
  107.     return this.destinatario;
  108.   }

  109.   public void setDestinatario(DestinatarioType destinatario) {
  110.     this.destinatario = destinatario;
  111.   }

  112.   public RiferimentoArchivioType getRiferimentoArchivio() {
  113.     return this.riferimentoArchivio;
  114.   }

  115.   public void setRiferimentoArchivio(RiferimentoArchivioType riferimentoArchivio) {
  116.     this.riferimentoArchivio = riferimentoArchivio;
  117.   }

  118.   public java.lang.String getMessageId() {
  119.     return this.messageId;
  120.   }

  121.   public void setMessageId(java.lang.String messageId) {
  122.     this.messageId = messageId;
  123.   }

  124.   public java.lang.String getPecMessageId() {
  125.     return this.pecMessageId;
  126.   }

  127.   public void setPecMessageId(java.lang.String pecMessageId) {
  128.     this.pecMessageId = pecMessageId;
  129.   }

  130.   public java.lang.String getNote() {
  131.     return this.note;
  132.   }

  133.   public void setNote(java.lang.String note) {
  134.     this.note = note;
  135.   }

  136.   public java.lang.String getVersione() {
  137.     return this.versione;
  138.   }

  139.   public void setVersione(java.lang.String versione) {
  140.     this.versione = versione;
  141.   }

  142.   public java.lang.String getFlussoSemplificato() {
  143.     return this.flussoSemplificato;
  144.   }

  145.   public void setFlussoSemplificato(java.lang.String flussoSemplificato) {
  146.     this.flussoSemplificato = flussoSemplificato;
  147.   }

  148.   private static final long serialVersionUID = 1L;

  149.   private static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaConsegnaTypeModel modelStaticInstance = null;
  150.   private static synchronized void initModelStaticInstance(){
  151.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance==null){
  152.             it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance = new it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaConsegnaTypeModel();
  153.       }
  154.   }
  155.   public static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaConsegnaTypeModel model(){
  156.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance==null){
  157.             initModelStaticInstance();
  158.       }
  159.       return it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaConsegnaType.modelStaticInstance;
  160.   }


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

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

  167.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  168.   @XmlElement(name="Hash",required=true,nillable=false)
  169.   protected java.lang.String hash;

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

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

  178.   @XmlElement(name="Destinatario",required=true,nillable=false)
  179.   protected DestinatarioType destinatario;

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

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

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

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

  191.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  192.   @XmlAttribute(name="versione",required=true)
  193.   protected java.lang.String versione;

  194.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  195.   @XmlAttribute(name="FlussoSemplificato",required=false)
  196.   protected java.lang.String flussoSemplificato;

  197. }