RicevutaImpossibilitaRecapitoType.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 RicevutaImpossibilitaRecapito_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="RicevutaImpossibilitaRecapito_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="DataMessaADisposizione" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="RiferimentoArchivio" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}RiferimentoArchivio_Type" minOccurs="0" maxOccurs="1"/&gt;
  41.  *          &lt;element name="Descrizione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" 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;/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 = "RicevutaImpossibilitaRecapito_Type",
  57.   propOrder = {
  58.     "identificativoSdI",
  59.     "nomeFile",
  60.     "hash",
  61.     "dataOraRicezione",
  62.     "dataMessaADisposizione",
  63.     "riferimentoArchivio",
  64.     "descrizione",
  65.     "messageId",
  66.     "pecMessageId",
  67.     "note"
  68.   }
  69. )

  70. @XmlRootElement(name = "RicevutaImpossibilitaRecapito_Type")

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

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

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

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

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

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

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

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

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

  99.   public java.util.Date getDataMessaADisposizione() {
  100.     return this.dataMessaADisposizione;
  101.   }

  102.   public void setDataMessaADisposizione(java.util.Date dataMessaADisposizione) {
  103.     this.dataMessaADisposizione = dataMessaADisposizione;
  104.   }

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

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

  111.   public java.lang.String getDescrizione() {
  112.     return this.descrizione;
  113.   }

  114.   public void setDescrizione(java.lang.String descrizione) {
  115.     this.descrizione = descrizione;
  116.   }

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

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

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

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

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

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

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

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

  141.   private static final long serialVersionUID = 1L;

  142.   private static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaImpossibilitaRecapitoTypeModel modelStaticInstance = null;
  143.   private static synchronized void initModelStaticInstance(){
  144.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaImpossibilitaRecapitoType.modelStaticInstance==null){
  145.             it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaImpossibilitaRecapitoType.modelStaticInstance = new it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaImpossibilitaRecapitoTypeModel();
  146.       }
  147.   }
  148.   public static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaImpossibilitaRecapitoTypeModel model(){
  149.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaImpossibilitaRecapitoType.modelStaticInstance==null){
  150.             initModelStaticInstance();
  151.       }
  152.       return it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaImpossibilitaRecapitoType.modelStaticInstance;
  153.   }


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

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

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

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

  167.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.Date2String.class)
  168.   @javax.xml.bind.annotation.XmlSchemaType(name="date")
  169.   @XmlElement(name="DataMessaADisposizione",required=true,nillable=false,type=java.lang.String.class)
  170.   protected java.util.Date dataMessaADisposizione;

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

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

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

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

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

  185.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  186.   @XmlAttribute(name="versione",required=true)
  187.   protected java.lang.String versione;

  188. }