AltriDatiGestionaliType.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.fatturapa.v1_0;

  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 AltriDatiGestionaliType complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="AltriDatiGestionaliType"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="TipoDato" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="RiferimentoTesto" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}normalizedString" minOccurs="0" maxOccurs="1"/&gt;
  36.  *          &lt;element name="RiferimentoNumero" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}decimal" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="RiferimentoData" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0" maxOccurs="1"/&gt;
  38.  *      &lt;/sequence&gt;
  39.  * &lt;/complexType&gt;
  40.  * </pre>
  41.  *
  42.  * @version $Rev$, $Date$
  43.  *
  44.  * @author Poli Andrea (poli@link.it)
  45.  * @author $Author$
  46.  * */

  47. @XmlAccessorType(XmlAccessType.FIELD)
  48. @XmlType(name = "AltriDatiGestionaliType",
  49.   propOrder = {
  50.     "tipoDato",
  51.     "riferimentoTesto",
  52.     "_decimalWrapper_riferimentoNumero",
  53.     "riferimentoData"
  54.   }
  55. )

  56. @XmlRootElement(name = "AltriDatiGestionaliType")

  57. public class AltriDatiGestionaliType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  58.   public AltriDatiGestionaliType() {
  59.     super();
  60.   }

  61.   public java.lang.String getTipoDato() {
  62.     return this.tipoDato;
  63.   }

  64.   public void setTipoDato(java.lang.String tipoDato) {
  65.     this.tipoDato = tipoDato;
  66.   }

  67.   public java.lang.String getRiferimentoTesto() {
  68.     return this.riferimentoTesto;
  69.   }

  70.   public void setRiferimentoTesto(java.lang.String riferimentoTesto) {
  71.     this.riferimentoTesto = riferimentoTesto;
  72.   }

  73.   public java.math.BigDecimal getRiferimentoNumero() {
  74.     if(this._decimalWrapper_riferimentoNumero!=null){
  75.         return (java.math.BigDecimal) this._decimalWrapper_riferimentoNumero.getObject(java.math.BigDecimal.class);
  76.     }else{
  77.         return this.riferimentoNumero;
  78.     }
  79.   }

  80.   public void setRiferimentoNumero(java.math.BigDecimal riferimentoNumero) {
  81.     if(riferimentoNumero!=null){
  82.         this._decimalWrapper_riferimentoNumero = new org.openspcoop2.utils.jaxb.DecimalWrapper(1,11,2,8,riferimentoNumero);
  83.     }
  84.   }

  85.   public java.util.Date getRiferimentoData() {
  86.     return this.riferimentoData;
  87.   }

  88.   public void setRiferimentoData(java.util.Date riferimentoData) {
  89.     this.riferimentoData = riferimentoData;
  90.   }

  91.   private static final long serialVersionUID = 1L;



  92.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  93.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  94.   @XmlElement(name="TipoDato",required=true,nillable=false)
  95.   protected java.lang.String tipoDato;

  96.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  97.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  98.   @XmlElement(name="RiferimentoTesto",required=false,nillable=false)
  99.   protected java.lang.String riferimentoTesto;

  100.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.Decimal2String.class)
  101.   @javax.xml.bind.annotation.XmlSchemaType(name="decimal")
  102.   @XmlElement(name="RiferimentoNumero",required=false,nillable=false)
  103.   org.openspcoop2.utils.jaxb.DecimalWrapper _decimalWrapper_riferimentoNumero = null;

  104.   @javax.xml.bind.annotation.XmlTransient
  105.   protected java.math.BigDecimal riferimentoNumero;

  106.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.Date2String.class)
  107.   @javax.xml.bind.annotation.XmlSchemaType(name="date")
  108.   @XmlElement(name="RiferimentoData",required=false,nillable=false,type=java.lang.String.class)
  109.   protected java.util.Date riferimentoData;

  110. }