All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.doccont00.intcass.xmlbnl.Beneficiario Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 of the
 *     License, or (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.07.16 at 09:58:11 AM CEST 
//


package it.cnr.contab.doccont00.intcass.xmlbnl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for beneficiario complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="beneficiario">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="anagrafica_beneficiario">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <minLength value="1"/>
 *               <whiteSpace value="collapse"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="indirizzo_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="cap_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <minLength value="1"/>
 *               <maxLength value="16"/>
 *               <pattern value="\d{5}"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="localita_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="provincia_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="stato_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <minLength value="2"/>
 *               <maxLength value="2"/>
 *               <pattern value="[A-Z]{2,2}"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="partita_iva_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <minLength value="1"/>
 *               <maxLength value="35"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="codice_fiscale_beneficiario" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <minLength value="1"/>
 *               <maxLength value="35"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "beneficiario", propOrder = { "anagraficaBeneficiario", "indirizzoBeneficiario", "capBeneficiario", "localitaBeneficiario", "provinciaBeneficiario", "statoBeneficiario", "partitaIvaBeneficiario", "codiceFiscaleBeneficiario" }) public class Beneficiario { @XmlElement(name = "anagrafica_beneficiario", required = true) protected String anagraficaBeneficiario; @XmlElement(name = "indirizzo_beneficiario") protected String indirizzoBeneficiario; @XmlElement(name = "cap_beneficiario") protected String capBeneficiario; @XmlElement(name = "localita_beneficiario") protected String localitaBeneficiario; @XmlElement(name = "provincia_beneficiario") protected String provinciaBeneficiario; @XmlElement(name = "stato_beneficiario") protected String statoBeneficiario; @XmlElement(name = "partita_iva_beneficiario") protected String partitaIvaBeneficiario; @XmlElement(name = "codice_fiscale_beneficiario") protected String codiceFiscaleBeneficiario; /** * Gets the value of the anagraficaBeneficiario property. * * @return * possible object is * {@link String } * */ public String getAnagraficaBeneficiario() { return anagraficaBeneficiario; } /** * Sets the value of the anagraficaBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setAnagraficaBeneficiario(String value) { this.anagraficaBeneficiario = value; } /** * Gets the value of the indirizzoBeneficiario property. * * @return * possible object is * {@link String } * */ public String getIndirizzoBeneficiario() { return indirizzoBeneficiario; } /** * Sets the value of the indirizzoBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setIndirizzoBeneficiario(String value) { this.indirizzoBeneficiario = value; } /** * Gets the value of the capBeneficiario property. * * @return * possible object is * {@link String } * */ public String getCapBeneficiario() { return capBeneficiario; } /** * Sets the value of the capBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setCapBeneficiario(String value) { this.capBeneficiario = value; } /** * Gets the value of the localitaBeneficiario property. * * @return * possible object is * {@link String } * */ public String getLocalitaBeneficiario() { return localitaBeneficiario; } /** * Sets the value of the localitaBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setLocalitaBeneficiario(String value) { this.localitaBeneficiario = value; } /** * Gets the value of the provinciaBeneficiario property. * * @return * possible object is * {@link String } * */ public String getProvinciaBeneficiario() { return provinciaBeneficiario; } /** * Sets the value of the provinciaBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setProvinciaBeneficiario(String value) { this.provinciaBeneficiario = value; } /** * Gets the value of the statoBeneficiario property. * * @return * possible object is * {@link String } * */ public String getStatoBeneficiario() { return statoBeneficiario; } /** * Sets the value of the statoBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setStatoBeneficiario(String value) { this.statoBeneficiario = value; } /** * Gets the value of the partitaIvaBeneficiario property. * * @return * possible object is * {@link String } * */ public String getPartitaIvaBeneficiario() { return partitaIvaBeneficiario; } /** * Sets the value of the partitaIvaBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setPartitaIvaBeneficiario(String value) { this.partitaIvaBeneficiario = value; } /** * Gets the value of the codiceFiscaleBeneficiario property. * * @return * possible object is * {@link String } * */ public String getCodiceFiscaleBeneficiario() { return codiceFiscaleBeneficiario; } /** * Sets the value of the codiceFiscaleBeneficiario property. * * @param value * allowed object is * {@link String } * */ public void setCodiceFiscaleBeneficiario(String value) { this.codiceFiscaleBeneficiario = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy