MetadatiInvioFileType.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 MetadatiInvioFile_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="MetadatiInvioFile_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="CodiceDestinatario" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="Formato" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="TentativiInvio" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="MessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  41.  *          &lt;element name="Note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  42.  *      &lt;/sequence&gt;
  43.  *      &lt;attribute name="versione" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" use="required"/&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 = "MetadatiInvioFile_Type",
  54.   propOrder = {
  55.     "identificativoSdI",
  56.     "nomeFile",
  57.     "codiceDestinatario",
  58.     "formato",
  59.     "tentativiInvio",
  60.     "messageId",
  61.     "note"
  62.   }
  63. )

  64. @XmlRootElement(name = "MetadatiInvioFile_Type")

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

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

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

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

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

  81.   public java.lang.String getCodiceDestinatario() {
  82.     return this.codiceDestinatario;
  83.   }

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

  87.   public java.lang.String getFormato() {
  88.     return this.formato;
  89.   }

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

  93.   public java.math.BigInteger getTentativiInvio() {
  94.     return this.tentativiInvio;
  95.   }

  96.   public void setTentativiInvio(java.math.BigInteger tentativiInvio) {
  97.     this.tentativiInvio = tentativiInvio;
  98.   }

  99.   public java.lang.String getMessageId() {
  100.     return this.messageId;
  101.   }

  102.   public void setMessageId(java.lang.String messageId) {
  103.     this.messageId = messageId;
  104.   }

  105.   public java.lang.String getNote() {
  106.     return this.note;
  107.   }

  108.   public void setNote(java.lang.String note) {
  109.     this.note = note;
  110.   }

  111.   public java.lang.String getVersione() {
  112.     return this.versione;
  113.   }

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

  117.   private static final long serialVersionUID = 1L;

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


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

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

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

  139.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  140.   @XmlElement(name="Formato",required=true,nillable=false)
  141.   protected java.lang.String formato;

  142.   @javax.xml.bind.annotation.XmlSchemaType(name="integer")
  143.   @XmlElement(name="TentativiInvio",required=true,nillable=false)
  144.   protected java.math.BigInteger tentativiInvio;

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

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

  151.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  152.   @XmlAttribute(name="versione",required=true)
  153.   protected java.lang.String versione;

  154. }