FileMetadatiType.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 FileMetadati_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="FileMetadati_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="CodiceDestinatario" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="Formato" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="TentativiInvio" type="{http://www.w3.org/2001/XMLSchema}integer" 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="Note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0" maxOccurs="1"/&gt;
  43.  *      &lt;/sequence&gt;
  44.  *      &lt;attribute name="versione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0}string" use="required"/&gt;
  45.  * &lt;/complexType&gt;
  46.  * </pre>
  47.  *
  48.  * @version $Rev$, $Date$
  49.  *
  50.  * @author Poli Andrea (poli@link.it)
  51.  * @author $Author$
  52.  * */

  53. @XmlAccessorType(XmlAccessType.FIELD)
  54. @XmlType(name = "FileMetadati_Type",
  55.   propOrder = {
  56.     "identificativoSdI",
  57.     "nomeFile",
  58.     "hash",
  59.     "codiceDestinatario",
  60.     "formato",
  61.     "tentativiInvio",
  62.     "messageId",
  63.     "note"
  64.   }
  65. )

  66. @XmlRootElement(name = "FileMetadati_Type")

  67. public class FileMetadatiType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  68.   public FileMetadatiType() {
  69.     super();
  70.   }

  71.   public java.lang.String getIdentificativoSdI() {
  72.     return this.identificativoSdI;
  73.   }

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

  77.   public java.lang.String getNomeFile() {
  78.     return this.nomeFile;
  79.   }

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

  83.   public java.lang.String getHash() {
  84.     return this.hash;
  85.   }

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

  89.   public java.lang.String getCodiceDestinatario() {
  90.     return this.codiceDestinatario;
  91.   }

  92.   public void setCodiceDestinatario(java.lang.String codiceDestinatario) {
  93.     this.codiceDestinatario = codiceDestinatario;
  94.   }

  95.   public java.lang.String getFormato() {
  96.     return this.formato;
  97.   }

  98.   public void setFormato(java.lang.String formato) {
  99.     this.formato = formato;
  100.   }

  101.   public java.math.BigInteger getTentativiInvio() {
  102.     return this.tentativiInvio;
  103.   }

  104.   public void setTentativiInvio(java.math.BigInteger tentativiInvio) {
  105.     this.tentativiInvio = tentativiInvio;
  106.   }

  107.   public java.lang.String getMessageId() {
  108.     return this.messageId;
  109.   }

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

  113.   public java.lang.String getNote() {
  114.     return this.note;
  115.   }

  116.   public void setNote(java.lang.String note) {
  117.     this.note = note;
  118.   }

  119.   public java.lang.String getVersione() {
  120.     return this.versione;
  121.   }

  122.   public void setVersione(java.lang.String versione) {
  123.     this.versione = versione;
  124.   }

  125.   private static final long serialVersionUID = 1L;

  126.   private static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.FileMetadatiTypeModel modelStaticInstance = null;
  127.   private static synchronized void initModelStaticInstance(){
  128.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.FileMetadatiType.modelStaticInstance==null){
  129.             it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.FileMetadatiType.modelStaticInstance = new it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.FileMetadatiTypeModel();
  130.       }
  131.   }
  132.   public static it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.model.FileMetadatiTypeModel model(){
  133.       if(it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.FileMetadatiType.modelStaticInstance==null){
  134.             initModelStaticInstance();
  135.       }
  136.       return it.gov.agenziaentrate.ivaservizi.docs.xsd.fattura.messaggi.v1_0.FileMetadatiType.modelStaticInstance;
  137.   }


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

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

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

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

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

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

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

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

  162.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  163.   @XmlAttribute(name="versione",required=true)
  164.   protected java.lang.String versione;

  165. }