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

it.cnr.contab.doccont00.intcass.xmlbnl.FlussoOrdinativi 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 java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="codice_ABI_BT">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="identificativo_flusso">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="data_ora_creazione_flusso" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="codice_ente">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="descrizione_ente">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="codice_ente_BT">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="riferimento_ente" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="esercizio">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
 *               <minInclusive value="1999"/>
 *               <maxInclusive value="2099"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="reversale" type="{}reversale" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="mandato" type="{}mandato" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "codiceABIBT", "identificativoFlusso", "dataOraCreazioneFlusso", "codiceEnte", "descrizioneEnte", "codiceEnteBT", "riferimentoEnte", "esercizio", "reversale", "mandato" }) @XmlRootElement(name = "flusso_ordinativi") public class FlussoOrdinativi { @XmlElement(name = "codice_ABI_BT", required = true) protected String codiceABIBT; @XmlElement(name = "identificativo_flusso", required = true) protected String identificativoFlusso; @XmlElement(name = "data_ora_creazione_flusso") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataOraCreazioneFlusso; @XmlElement(name = "codice_ente", required = true) protected String codiceEnte; @XmlElement(name = "descrizione_ente", required = true) protected String descrizioneEnte; @XmlElement(name = "codice_ente_BT", required = true) protected String codiceEnteBT; @XmlElement(name = "riferimento_ente") protected String riferimentoEnte; protected int esercizio; protected List reversale; protected List mandato; /** * Gets the value of the codiceABIBT property. * * @return * possible object is * {@link BigInteger } * */ public String getCodiceABIBT() { return codiceABIBT; } /** * Sets the value of the codiceABIBT property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCodiceABIBT(String value) { this.codiceABIBT = value; } /** * Gets the value of the identificativoFlusso property. * * @return * possible object is * {@link String } * */ public String getIdentificativoFlusso() { return identificativoFlusso; } /** * Sets the value of the identificativoFlusso property. * * @param value * allowed object is * {@link String } * */ public void setIdentificativoFlusso(String value) { this.identificativoFlusso = value; } /** * Gets the value of the dataOraCreazioneFlusso property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataOraCreazioneFlusso() { return dataOraCreazioneFlusso; } /** * Sets the value of the dataOraCreazioneFlusso property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDataOraCreazioneFlusso(XMLGregorianCalendar value) { this.dataOraCreazioneFlusso = value; } /** * Gets the value of the codiceEnte property. * * @return * possible object is * {@link String } * */ public String getCodiceEnte() { return codiceEnte; } /** * Sets the value of the codiceEnte property. * * @param value * allowed object is * {@link String } * */ public void setCodiceEnte(String value) { this.codiceEnte = value; } /** * Gets the value of the descrizioneEnte property. * * @return * possible object is * {@link String } * */ public String getDescrizioneEnte() { return descrizioneEnte; } /** * Sets the value of the descrizioneEnte property. * * @param value * allowed object is * {@link String } * */ public void setDescrizioneEnte(String value) { this.descrizioneEnte = value; } /** * Gets the value of the codiceEnteBT property. * * @return * possible object is * {@link String } * */ public String getCodiceEnteBT() { return codiceEnteBT; } /** * Sets the value of the codiceEnteBT property. * * @param value * allowed object is * {@link String } * */ public void setCodiceEnteBT(String value) { this.codiceEnteBT = value; } /** * Gets the value of the riferimentoEnte property. * * @return * possible object is * {@link String } * */ public String getRiferimentoEnte() { return riferimentoEnte; } /** * Sets the value of the riferimentoEnte property. * * @param value * allowed object is * {@link String } * */ public void setRiferimentoEnte(String value) { this.riferimentoEnte = value; } /** * Gets the value of the esercizio property. * */ public int getEsercizio() { return esercizio; } /** * Sets the value of the esercizio property. * */ public void setEsercizio(int value) { this.esercizio = value; } /** * Gets the value of the reversale property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the reversale property. * *

* For example, to add a new item, do as follows: *

     *    getReversale().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Reversale } * * */ public List getReversale() { if (reversale == null) { reversale = new ArrayList(); } return this.reversale; } /** * Gets the value of the mandato property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the mandato property. * *

* For example, to add a new item, do as follows: *

     *    getMandato().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Mandato } * * */ public List getMandato() { if (mandato == null) { mandato = new ArrayList(); } return this.mandato; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy