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

  48. @XmlAccessorType(XmlAccessType.FIELD)
  49. @XmlType(name = "AnagraficaType",
  50.   propOrder = {
  51.     "denominazione",
  52.     "nome",
  53.     "cognome",
  54.     "titolo",
  55.     "codEORI"
  56.   }
  57. )

  58. @XmlRootElement(name = "AnagraficaType")

  59. public class AnagraficaType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  60.   public AnagraficaType() {
  61.     super();
  62.   }

  63.   public java.lang.String getDenominazione() {
  64.     return this.denominazione;
  65.   }

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

  69.   public java.lang.String getNome() {
  70.     return this.nome;
  71.   }

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

  75.   public java.lang.String getCognome() {
  76.     return this.cognome;
  77.   }

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

  81.   public java.lang.String getTitolo() {
  82.     return this.titolo;
  83.   }

  84.   public void setTitolo(java.lang.String titolo) {
  85.     this.titolo = titolo;
  86.   }

  87.   public java.lang.String getCodEORI() {
  88.     return this.codEORI;
  89.   }

  90.   public void setCodEORI(java.lang.String codEORI) {
  91.     this.codEORI = codEORI;
  92.   }

  93.   private static final long serialVersionUID = 1L;



  94.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  95.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  96.   @XmlElement(name="Denominazione",required=true,nillable=false)
  97.   protected java.lang.String denominazione;

  98.   @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(javax.xml.bind.annotation.adapters.NormalizedStringAdapter.class)
  99.   @javax.xml.bind.annotation.XmlSchemaType(name="normalizedString")
  100.   @XmlElement(name="Nome",required=true,nillable=false)
  101.   protected java.lang.String nome;

  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="Cognome",required=true,nillable=false)
  105.   protected java.lang.String cognome;

  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="Titolo",required=false,nillable=false)
  109.   protected java.lang.String titolo;

  110.   @javax.xml.bind.annotation.XmlSchemaType(name="string")
  111.   @XmlElement(name="CodEORI",required=false,nillable=false)
  112.   protected java.lang.String codEORI;

  113. }