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_2;

  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 CedentePrestatoreType complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="CedentePrestatoreType"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="DatiAnagrafici" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}DatiAnagraficiCedenteType" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="Sede" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}IndirizzoType" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="StabileOrganizzazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}IndirizzoType" minOccurs="0" maxOccurs="1"/&gt;
  37.  *          &lt;element name="IscrizioneREA" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}IscrizioneREAType" minOccurs="0" maxOccurs="1"/&gt;
  38.  *          &lt;element name="Contatti" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}ContattiType" minOccurs="0" maxOccurs="1"/&gt;
  39.  *          &lt;element name="RiferimentoAmministrazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.2}normalizedString" minOccurs="0" maxOccurs="1"/&gt;
  40.  *      &lt;/sequence&gt;
  41.  * &lt;/complexType&gt;
  42.  * </pre>
  43.  *
  44.  * @version $Rev$, $Date$
  45.  *
  46.  * @author Poli Andrea (poli@link.it)
  47.  * @author $Author$
  48.  * */

  49. @XmlAccessorType(XmlAccessType.FIELD)
  50. @XmlType(name = "CedentePrestatoreType",
  51.   propOrder = {
  52.     "datiAnagrafici",
  53.     "sede",
  54.     "stabileOrganizzazione",
  55.     "iscrizioneREA",
  56.     "contatti",
  57.     "riferimentoAmministrazione"
  58.   }
  59. )

  60. @XmlRootElement(name = "CedentePrestatoreType")

  61. public class CedentePrestatoreType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  62.   public CedentePrestatoreType() {
  63.     super();
  64.   }

  65.   public DatiAnagraficiCedenteType getDatiAnagrafici() {
  66.     return this.datiAnagrafici;
  67.   }

  68.   public void setDatiAnagrafici(DatiAnagraficiCedenteType datiAnagrafici) {
  69.     this.datiAnagrafici = datiAnagrafici;
  70.   }

  71.   public IndirizzoType getSede() {
  72.     return this.sede;
  73.   }

  74.   public void setSede(IndirizzoType sede) {
  75.     this.sede = sede;
  76.   }

  77.   public IndirizzoType getStabileOrganizzazione() {
  78.     return this.stabileOrganizzazione;
  79.   }

  80.   public void setStabileOrganizzazione(IndirizzoType stabileOrganizzazione) {
  81.     this.stabileOrganizzazione = stabileOrganizzazione;
  82.   }

  83.   public IscrizioneREAType getIscrizioneREA() {
  84.     return this.iscrizioneREA;
  85.   }

  86.   public void setIscrizioneREA(IscrizioneREAType iscrizioneREA) {
  87.     this.iscrizioneREA = iscrizioneREA;
  88.   }

  89.   public ContattiType getContatti() {
  90.     return this.contatti;
  91.   }

  92.   public void setContatti(ContattiType contatti) {
  93.     this.contatti = contatti;
  94.   }

  95.   public java.lang.String getRiferimentoAmministrazione() {
  96.     return this.riferimentoAmministrazione;
  97.   }

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

  101.   private static final long serialVersionUID = 1L;



  102.   @XmlElement(name="DatiAnagrafici",required=true,nillable=false)
  103.   protected DatiAnagraficiCedenteType datiAnagrafici;

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

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

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

  110.   @XmlElement(name="Contatti",required=false,nillable=false)
  111.   protected ContattiType contatti;

  112.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  113.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  114.   @XmlElement(name="RiferimentoAmministrazione",required=false,nillable=false)
  115.   protected java.lang.String riferimentoAmministrazione;

  116. }