AltriDatiIdentificativiType.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 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 AltriDatiIdentificativiType complex type.
  28.  *
  29.  * <p>The following schema fragment specifies the expected content contained within this class.
  30.  *
  31.  * <pre>
  32.  * &lt;complexType name="AltriDatiIdentificativiType"&gt;
  33.  *      &lt;sequence&gt;
  34.  *          &lt;element name="Denominazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  35.  *          &lt;element name="Nome" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  36.  *          &lt;element name="Cognome" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}normalizedString" minOccurs="1" maxOccurs="1"/&gt;
  37.  *          &lt;element name="Sede" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IndirizzoType" minOccurs="1" maxOccurs="1"/&gt;
  38.  *          &lt;element name="StabileOrganizzazione" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}IndirizzoType" minOccurs="0" maxOccurs="1"/&gt;
  39.  *          &lt;element name="RappresentanteFiscale" type="{http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fatture/v1.0}RappresentanteFiscaleType" 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 = "AltriDatiIdentificativiType",
  51.   propOrder = {
  52.     "denominazione",
  53.     "nome",
  54.     "cognome",
  55.     "sede",
  56.     "stabileOrganizzazione",
  57.     "rappresentanteFiscale"
  58.   }
  59. )

  60. @XmlRootElement(name = "AltriDatiIdentificativiType")

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

  65.   public java.lang.String getDenominazione() {
  66.     return this.denominazione;
  67.   }

  68.   public void setDenominazione(java.lang.String denominazione) {
  69.     this.denominazione = denominazione;
  70.   }

  71.   public java.lang.String getNome() {
  72.     return this.nome;
  73.   }

  74.   public void setNome(java.lang.String nome) {
  75.     this.nome = nome;
  76.   }

  77.   public java.lang.String getCognome() {
  78.     return this.cognome;
  79.   }

  80.   public void setCognome(java.lang.String cognome) {
  81.     this.cognome = cognome;
  82.   }

  83.   public IndirizzoType getSede() {
  84.     return this.sede;
  85.   }

  86.   public void setSede(IndirizzoType sede) {
  87.     this.sede = sede;
  88.   }

  89.   public IndirizzoType getStabileOrganizzazione() {
  90.     return this.stabileOrganizzazione;
  91.   }

  92.   public void setStabileOrganizzazione(IndirizzoType stabileOrganizzazione) {
  93.     this.stabileOrganizzazione = stabileOrganizzazione;
  94.   }

  95.   public RappresentanteFiscaleType getRappresentanteFiscale() {
  96.     return this.rappresentanteFiscale;
  97.   }

  98.   public void setRappresentanteFiscale(RappresentanteFiscaleType rappresentanteFiscale) {
  99.     this.rappresentanteFiscale = rappresentanteFiscale;
  100.   }

  101.   private static final long serialVersionUID = 1L;



  102.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  103.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  104.   @XmlElement(name="Denominazione",required=true,nillable=false)
  105.   protected java.lang.String denominazione;

  106.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  107.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  108.   @XmlElement(name="Nome",required=true,nillable=false)
  109.   protected java.lang.String nome;

  110.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  111.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  112.   @XmlElement(name="Cognome",required=true,nillable=false)
  113.   protected java.lang.String cognome;

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

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

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

  120. }