CedentePrestatoreType.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.fatture.v1_0;

  21. import it.gov.agenziaentrate.ivaservizi.docs.xsd.fatture.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 CedentePrestatoreType complex type.
  29.  *
  30.  * <p>The following schema fragment specifies the expected content contained within this class.
  31.  *
  32.  * <pre>
  33.  * &lt;complexType name="CedentePrestatoreType"&gt;
  34.  *      &lt;sequence&gt;
  35.  *          &lt;element name="IdFiscaleIVA" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IdFiscaleType" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="CodiceFiscale" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}string" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="Denominazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="Nome" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  39.  *          &lt;element name="Cognome" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  40.  *          &lt;element name="Sede" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IndirizzoType" minOccurs="1" maxOccurs="1"/&gt;
  41.  *          &lt;element name="StabileOrganizzazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IndirizzoType" minOccurs="0" maxOccurs="1"/&gt;
  42.  *          &lt;element name="RappresentanteFiscale" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}RappresentanteFiscaleType" minOccurs="0" maxOccurs="1"/&gt;
  43.  *          &lt;element name="IscrizioneREA" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IscrizioneREAType" minOccurs="0" maxOccurs="1"/&gt;
  44.  *          &lt;element name="RegimeFiscale" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}RegimeFiscaleType" minOccurs="1" maxOccurs="1"/&gt;
  45.  *      &lt;/sequence&gt;
  46.  * &lt;/complexType&gt;
  47.  * </pre>
  48.  *
  49.  * @version $Rev$, $Date$
  50.  *
  51.  * @author Poli Andrea (poli@link.it)
  52.  * @author $Author$
  53.  * */

  54. @XmlAccessorType(XmlAccessType.FIELD)
  55. @XmlType(name = "CedentePrestatoreType",
  56.   propOrder = {
  57.     "idFiscaleIVA",
  58.     "codiceFiscale",
  59.     "denominazione",
  60.     "nome",
  61.     "cognome",
  62.     "sede",
  63.     "stabileOrganizzazione",
  64.     "rappresentanteFiscale",
  65.     "iscrizioneREA",
  66.     "regimeFiscale"
  67.   }
  68. )

  69. @XmlRootElement(name = "CedentePrestatoreType")

  70. public class CedentePrestatoreType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  71.   public CedentePrestatoreType() {
  72.     super();
  73.   }

  74.   public IdFiscaleType getIdFiscaleIVA() {
  75.     return this.idFiscaleIVA;
  76.   }

  77.   public void setIdFiscaleIVA(IdFiscaleType idFiscaleIVA) {
  78.     this.idFiscaleIVA = idFiscaleIVA;
  79.   }

  80.   public java.lang.String getCodiceFiscale() {
  81.     return this.codiceFiscale;
  82.   }

  83.   public void setCodiceFiscale(java.lang.String codiceFiscale) {
  84.     this.codiceFiscale = codiceFiscale;
  85.   }

  86.   public java.lang.String getDenominazione() {
  87.     return this.denominazione;
  88.   }

  89.   public void setDenominazione(java.lang.String denominazione) {
  90.     this.denominazione = denominazione;
  91.   }

  92.   public java.lang.String getNome() {
  93.     return this.nome;
  94.   }

  95.   public void setNome(java.lang.String nome) {
  96.     this.nome = nome;
  97.   }

  98.   public java.lang.String getCognome() {
  99.     return this.cognome;
  100.   }

  101.   public void setCognome(java.lang.String cognome) {
  102.     this.cognome = cognome;
  103.   }

  104.   public IndirizzoType getSede() {
  105.     return this.sede;
  106.   }

  107.   public void setSede(IndirizzoType sede) {
  108.     this.sede = sede;
  109.   }

  110.   public IndirizzoType getStabileOrganizzazione() {
  111.     return this.stabileOrganizzazione;
  112.   }

  113.   public void setStabileOrganizzazione(IndirizzoType stabileOrganizzazione) {
  114.     this.stabileOrganizzazione = stabileOrganizzazione;
  115.   }

  116.   public RappresentanteFiscaleType getRappresentanteFiscale() {
  117.     return this.rappresentanteFiscale;
  118.   }

  119.   public void setRappresentanteFiscale(RappresentanteFiscaleType rappresentanteFiscale) {
  120.     this.rappresentanteFiscale = rappresentanteFiscale;
  121.   }

  122.   public IscrizioneREAType getIscrizioneREA() {
  123.     return this.iscrizioneREA;
  124.   }

  125.   public void setIscrizioneREA(IscrizioneREAType iscrizioneREA) {
  126.     this.iscrizioneREA = iscrizioneREA;
  127.   }

  128.   public void setRegimeFiscaleRawEnumValue(String value) {
  129.     this.regimeFiscale = (RegimeFiscaleType) RegimeFiscaleType.toEnumConstantFromString(value);
  130.   }

  131.   public String getRegimeFiscaleRawEnumValue() {
  132.     if(this.regimeFiscale == null){
  133.         return null;
  134.     }else{
  135.         return this.regimeFiscale.toString();
  136.     }
  137.   }

  138.   public it.gov.agenziaentrate.ivaservizi.docs.xsd.fatture.v1_0.constants.RegimeFiscaleType getRegimeFiscale() {
  139.     return this.regimeFiscale;
  140.   }

  141.   public void setRegimeFiscale(it.gov.agenziaentrate.ivaservizi.docs.xsd.fatture.v1_0.constants.RegimeFiscaleType regimeFiscale) {
  142.     this.regimeFiscale = regimeFiscale;
  143.   }

  144.   private static final long serialVersionUID = 1L;



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

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

  150.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  151.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  152.   @XmlElement(name="Denominazione",required=true,nillable=false)
  153.   protected java.lang.String denominazione;

  154.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  155.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  156.   @XmlElement(name="Nome",required=true,nillable=false)
  157.   protected java.lang.String nome;

  158.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  159.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  160.   @XmlElement(name="Cognome",required=true,nillable=false)
  161.   protected java.lang.String cognome;

  162.   @XmlElement(name="Sede",required=true,nillable=false)
  163.   protected IndirizzoType sede;

  164.   @XmlElement(name="StabileOrganizzazione",required=false,nillable=false)
  165.   protected IndirizzoType stabileOrganizzazione;

  166.   @XmlElement(name="RappresentanteFiscale",required=false,nillable=false)
  167.   protected RappresentanteFiscaleType rappresentanteFiscale;

  168.   @XmlElement(name="IscrizioneREA",required=false,nillable=false)
  169.   protected IscrizioneREAType iscrizioneREA;

  170.   @javax.xml.bind.annotation.XmlTransient
  171.   protected java.lang.String regimeFiscaleRawEnumValue;

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

  174. }