FileSdIConMetadatiType.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.ws.ricezione.v1_0.types;

  21. import javax.xml.bind.annotation.XmlAccessType;
  22. import javax.xml.bind.annotation.XmlAccessorType;
  23. import javax.xml.bind.annotation.XmlElement;
  24. import javax.xml.bind.annotation.XmlRootElement;
  25. import javax.xml.bind.annotation.XmlType;
  26. import java.io.Serializable;


  27. /** <p>Java class for fileSdIConMetadati_Type complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="fileSdIConMetadati_Type"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="IdentificativoSdI" type="{http://www.fatturapa.gov.it/sdi/ws/ricezione/v1.0/types}string" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="NomeFile" type="{http://www.fatturapa.gov.it/sdi/ws/ricezione/v1.0/types}string" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="File" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="1" maxOccurs="1"/&gt;
  37.  *          &lt;element name="NomeFileMetadati" type="{http://www.fatturapa.gov.it/sdi/ws/ricezione/v1.0/types}string" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="Metadati" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="1" maxOccurs="1"/&gt;
  39.  *      &lt;/sequence&gt;
  40.  * &lt;/complexType&gt;
  41.  * </pre>
  42.  *
  43.  * @version $Rev$, $Date$
  44.  *
  45.  * @author Poli Andrea (poli@link.it)
  46.  * @author $Author$
  47.  * */

  48. @XmlAccessorType(XmlAccessType.FIELD)
  49. @XmlType(name = "fileSdIConMetadati_Type",
  50.   propOrder = {
  51.     "identificativoSdI",
  52.     "nomeFile",
  53.     "file",
  54.     "nomeFileMetadati",
  55.     "metadati"
  56.   }
  57. )

  58. @XmlRootElement(name = "fileSdIConMetadati_Type")

  59. public class FileSdIConMetadatiType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  60.   public FileSdIConMetadatiType() {
  61.     super();
  62.   }

  63.   public java.lang.String getIdentificativoSdI() {
  64.     return this.identificativoSdI;
  65.   }

  66.   public void setIdentificativoSdI(java.lang.String identificativoSdI) {
  67.     this.identificativoSdI = identificativoSdI;
  68.   }

  69.   public java.lang.String getNomeFile() {
  70.     return this.nomeFile;
  71.   }

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

  75.   public byte[] getFile() {
  76.     return this.file;
  77.   }

  78.   public void setFile(byte[] file) {
  79.     this.file = file;
  80.   }

  81.   public java.lang.String getNomeFileMetadati() {
  82.     return this.nomeFileMetadati;
  83.   }

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

  87.   public byte[] getMetadati() {
  88.     return this.metadati;
  89.   }

  90.   public void setMetadati(byte[] metadati) {
  91.     this.metadati = metadati;
  92.   }

  93.   private static final long serialVersionUID = 1L;

  94.   private static it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.model.FileSdIConMetadatiTypeModel modelStaticInstance = null;
  95.   private static synchronized void initModelStaticInstance(){
  96.       if(it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.FileSdIConMetadatiType.modelStaticInstance==null){
  97.             it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.FileSdIConMetadatiType.modelStaticInstance = new it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.model.FileSdIConMetadatiTypeModel();
  98.       }
  99.   }
  100.   public static it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.model.FileSdIConMetadatiTypeModel model(){
  101.       if(it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.FileSdIConMetadatiType.modelStaticInstance==null){
  102.             initModelStaticInstance();
  103.       }
  104.       return it.gov.fatturapa.sdi.ws.ricezione.v1_0.types.FileSdIConMetadatiType.modelStaticInstance;
  105.   }


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

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

  112.   @javax.xml.bind.annotation.XmlSchemaType(name="base64Binary")
  113.   @XmlElement(name="File",required=true,nillable=false)
  114.   protected byte[] file;

  115.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  116.   @XmlElement(name="NomeFileMetadati",required=true,nillable=false)
  117.   protected java.lang.String nomeFileMetadati;

  118.   @javax.xml.bind.annotation.XmlSchemaType(name="base64Binary")
  119.   @XmlElement(name="Metadati",required=true,nillable=false)
  120.   protected byte[] metadati;

  121. }