DatiAnagraficiCedenteType.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 it.gov.fatturapa.sdi.fatturapa.v1_0.constants.RegimeFiscaleType;
  22. import javax.xml.bind.annotation.XmlAccessType;
  23. import javax.xml.bind.annotation.XmlAccessorType;
  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 DatiAnagraficiCedenteType complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="DatiAnagraficiCedenteType"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="IdFiscaleIVA" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}IdFiscaleType" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="CodiceFiscale" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="Anagrafica" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}AnagraficaType" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="AlboProfessionale" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}normalizedString" minOccurs="0" maxOccurs="1"/&gt;
  39.  *          &lt;element name="ProvinciaAlbo" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  40.  *          &lt;element name="NumeroIscrizioneAlbo" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}normalizedString" minOccurs="0" maxOccurs="1"/&gt;
  41.  *          &lt;element name="DataIscrizioneAlbo" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0" maxOccurs="1"/&gt;
  42.  *          &lt;element name="RegimeFiscale" type="{http://www.fatturapa.gov.it/sdi/fatturapa/v1.0}RegimeFiscaleType" minOccurs="1" maxOccurs="1"/&gt;
  43.  *      &lt;/sequence&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 = "DatiAnagraficiCedenteType",
  54.   propOrder = {
  55.     "idFiscaleIVA",
  56.     "codiceFiscale",
  57.     "anagrafica",
  58.     "alboProfessionale",
  59.     "provinciaAlbo",
  60.     "numeroIscrizioneAlbo",
  61.     "dataIscrizioneAlbo",
  62.     "regimeFiscale"
  63.   }
  64. )

  65. @XmlRootElement(name = "DatiAnagraficiCedenteType")

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

  70.   public IdFiscaleType getIdFiscaleIVA() {
  71.     return this.idFiscaleIVA;
  72.   }

  73.   public void setIdFiscaleIVA(IdFiscaleType idFiscaleIVA) {
  74.     this.idFiscaleIVA = idFiscaleIVA;
  75.   }

  76.   public java.lang.String getCodiceFiscale() {
  77.     return this.codiceFiscale;
  78.   }

  79.   public void setCodiceFiscale(java.lang.String codiceFiscale) {
  80.     this.codiceFiscale = codiceFiscale;
  81.   }

  82.   public AnagraficaType getAnagrafica() {
  83.     return this.anagrafica;
  84.   }

  85.   public void setAnagrafica(AnagraficaType anagrafica) {
  86.     this.anagrafica = anagrafica;
  87.   }

  88.   public java.lang.String getAlboProfessionale() {
  89.     return this.alboProfessionale;
  90.   }

  91.   public void setAlboProfessionale(java.lang.String alboProfessionale) {
  92.     this.alboProfessionale = alboProfessionale;
  93.   }

  94.   public java.lang.String getProvinciaAlbo() {
  95.     return this.provinciaAlbo;
  96.   }

  97.   public void setProvinciaAlbo(java.lang.String provinciaAlbo) {
  98.     this.provinciaAlbo = provinciaAlbo;
  99.   }

  100.   public java.lang.String getNumeroIscrizioneAlbo() {
  101.     return this.numeroIscrizioneAlbo;
  102.   }

  103.   public void setNumeroIscrizioneAlbo(java.lang.String numeroIscrizioneAlbo) {
  104.     this.numeroIscrizioneAlbo = numeroIscrizioneAlbo;
  105.   }

  106.   public java.util.Date getDataIscrizioneAlbo() {
  107.     return this.dataIscrizioneAlbo;
  108.   }

  109.   public void setDataIscrizioneAlbo(java.util.Date dataIscrizioneAlbo) {
  110.     this.dataIscrizioneAlbo = dataIscrizioneAlbo;
  111.   }

  112.   public void setRegimeFiscaleRawEnumValue(String value) {
  113.     this.regimeFiscale = (RegimeFiscaleType) RegimeFiscaleType.toEnumConstantFromString(value);
  114.   }

  115.   public String getRegimeFiscaleRawEnumValue() {
  116.     if(this.regimeFiscale == null){
  117.         return null;
  118.     }else{
  119.         return this.regimeFiscale.toString();
  120.     }
  121.   }

  122.   public it.gov.fatturapa.sdi.fatturapa.v1_0.constants.RegimeFiscaleType getRegimeFiscale() {
  123.     return this.regimeFiscale;
  124.   }

  125.   public void setRegimeFiscale(it.gov.fatturapa.sdi.fatturapa.v1_0.constants.RegimeFiscaleType regimeFiscale) {
  126.     this.regimeFiscale = regimeFiscale;
  127.   }

  128.   private static final long serialVersionUID = 1L;



  129.   @XmlElement(name="IdFiscaleIVA",required=true,nillable=false)
  130.   protected IdFiscaleType idFiscaleIVA;

  131.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  132.   @XmlElement(name="CodiceFiscale",required=false,nillable=false)
  133.   protected java.lang.String codiceFiscale;

  134.   @XmlElement(name="Anagrafica",required=true,nillable=false)
  135.   protected AnagraficaType anagrafica;

  136.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  137.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  138.   @XmlElement(name="AlboProfessionale",required=false,nillable=false)
  139.   protected java.lang.String alboProfessionale;

  140.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  141.   @XmlElement(name="ProvinciaAlbo",required=false,nillable=false)
  142.   protected java.lang.String provinciaAlbo;

  143.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  144.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  145.   @XmlElement(name="NumeroIscrizioneAlbo",required=false,nillable=false)
  146.   protected java.lang.String numeroIscrizioneAlbo;

  147.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(org.openspcoop2.utils.jaxb.Date2String.class)
  148.   @javax.xml.bind.annotation.XmlSchemaType(name="date")
  149.   @XmlElement(name="DataIscrizioneAlbo",required=false,nillable=false,type=java.lang.String.class)
  150.   protected java.util.Date dataIscrizioneAlbo;

  151.   @javax.xml.bind.annotation.XmlTransient
  152.   protected java.lang.String regimeFiscaleRawEnumValue;

  153.   @XmlElement(name="RegimeFiscale",required=true,nillable=false)
  154.   protected RegimeFiscaleType regimeFiscale;

  155. }