RicevutaScartoType.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 RicevutaScarto_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="RicevutaScarto_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="RiferimentoArchivio" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}RiferimentoArchivio_Type" minOccurs="0" maxOccurs="1"/&gt;
  40.  *          &lt;element name="ListaErrori" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}ListaErrori_Type" minOccurs="1" maxOccurs="1"/&gt;
  41.  *          &lt;element name="MessageId" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  42.  *          &lt;element name="PecMessageId" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/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://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" use="required"/&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 = "RicevutaScarto_Type",
  56.   propOrder = {
  57.     "identificativoSdI",
  58.     "nomeFile",
  59.     "hash",
  60.     "dataOraRicezione",
  61.     "riferimentoArchivio",
  62.     "listaErrori",
  63.     "messageId",
  64.     "pecMessageId",
  65.     "note"
  66.   }
  67. )

  68. @XmlRootElement(name = "RicevutaScarto_Type")

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

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

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

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

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

  85.   public java.lang.String getHash() {
  86.     return this.hash;
  87.   }

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

  91.   public java.util.Date getDataOraRicezione() {
  92.     return this.dataOraRicezione;
  93.   }

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

  97.   public RiferimentoArchivioType getRiferimentoArchivio() {
  98.     return this.riferimentoArchivio;
  99.   }

  100.   public void setRiferimentoArchivio(RiferimentoArchivioType riferimentoArchivio) {
  101.     this.riferimentoArchivio = riferimentoArchivio;
  102.   }

  103.   public ListaErroriType getListaErrori() {
  104.     return this.listaErrori;
  105.   }

  106.   public void setListaErrori(ListaErroriType listaErrori) {
  107.     this.listaErrori = listaErrori;
  108.   }

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

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

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

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

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

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

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

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

  133.   private static final long serialVersionUID = 1L;

  134.   private static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaScartoTypeModel modelStaticInstance = null;
  135.   private static synchronized void initModelStaticInstance(){
  136.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaScartoType.modelStaticInstance==null){
  137.             it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaScartoType.modelStaticInstance = new it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaScartoTypeModel();
  138.       }
  139.   }
  140.   public static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.RicevutaScartoTypeModel model(){
  141.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaScartoType.modelStaticInstance==null){
  142.             initModelStaticInstance();
  143.       }
  144.       return it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.RicevutaScartoType.modelStaticInstance;
  145.   }


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

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

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

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

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

  161.   @XmlElement(name="ListaErrori",required=true,nillable=false)
  162.   protected ListaErroriType listaErrori;

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

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

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

  172.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  173.   @XmlAttribute(name="versione",required=true)
  174.   protected java.lang.String versione;

  175. }