NotificaMancataConsegnaType.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 NotificaMancataConsegna_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="NotificaMancataConsegna_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="DataOraRicezione" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="RiferimentoArchivio" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}RiferimentoArchivio_Type" minOccurs="0" maxOccurs="1"/&gt;
  39.  *          &lt;element name="Descrizione" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="0" 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="PecMessageId" type="{http://www.fatturapa.gov.it/sdi/messaggi/v1.0}string" minOccurs="0" 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://www.fatturapa.gov.it/sdi/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 = "NotificaMancataConsegna_Type",
  55.   propOrder = {
  56.     "identificativoSdI",
  57.     "nomeFile",
  58.     "dataOraRicezione",
  59.     "riferimentoArchivio",
  60.     "descrizione",
  61.     "messageId",
  62.     "pecMessageId",
  63.     "note"
  64.   }
  65. )

  66. @XmlRootElement(name = "NotificaMancataConsegna_Type")

  67. public class NotificaMancataConsegnaType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  68.   public NotificaMancataConsegnaType() {
  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.util.Date getDataOraRicezione() {
  84.     return this.dataOraRicezione;
  85.   }

  86.   public void setDataOraRicezione(java.util.Date dataOraRicezione) {
  87.     this.dataOraRicezione = dataOraRicezione;
  88.   }

  89.   public RiferimentoArchivioType getRiferimentoArchivio() {
  90.     return this.riferimentoArchivio;
  91.   }

  92.   public void setRiferimentoArchivio(RiferimentoArchivioType riferimentoArchivio) {
  93.     this.riferimentoArchivio = riferimentoArchivio;
  94.   }

  95.   public java.lang.String getDescrizione() {
  96.     return this.descrizione;
  97.   }

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

  101.   public java.lang.String getMessageId() {
  102.     return this.messageId;
  103.   }

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

  107.   public java.lang.String getPecMessageId() {
  108.     return this.pecMessageId;
  109.   }

  110.   public void setPecMessageId(java.lang.String pecMessageId) {
  111.     this.pecMessageId = pecMessageId;
  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.fatturapa.sdi.messaggi.v1_0.model.NotificaMancataConsegnaTypeModel modelStaticInstance = null;
  127.   private static synchronized void initModelStaticInstance(){
  128.       if(it.gov.fatturapa.sdi.messaggi.v1_0.NotificaMancataConsegnaType.modelStaticInstance==null){
  129.             it.gov.fatturapa.sdi.messaggi.v1_0.NotificaMancataConsegnaType.modelStaticInstance = new it.gov.fatturapa.sdi.messaggi.v1_0.model.NotificaMancataConsegnaTypeModel();
  130.       }
  131.   }
  132.   public static it.gov.fatturapa.sdi.messaggi.v1_0.model.NotificaMancataConsegnaTypeModel model(){
  133.       if(it.gov.fatturapa.sdi.messaggi.v1_0.NotificaMancataConsegnaType.modelStaticInstance==null){
  134.             initModelStaticInstance();
  135.       }
  136.       return it.gov.fatturapa.sdi.messaggi.v1_0.NotificaMancataConsegnaType.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.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.DateTime2String.class)
  145.   @javax.xml.bind.annotation.XmlSchemaType(name="dateTime")
  146.   @XmlElement(name="DataOraRicezione",required=true,nillable=false,type=java.lang.String.class)
  147.   protected java.util.Date dataOraRicezione;

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

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

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

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

  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. }