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

it.cnr.contab.doccont00.intcass.xmlbnl.SostituzioneMandato 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * Da utilizzare con il tipo_operazione SOSTITUZIONE
 * 
 * 

Java class for sostituzione_mandato complex type. * *

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

 * <complexType name="sostituzione_mandato">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="numero_mandato_da_sostituire" type="{}OnlyNumMax7"/>
 *         <element name="progressivo_beneficiario_da_sostituire">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="esercizio_mandato_da_sostituire">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
 *               <minInclusive value="1999"/>
 *               <maxInclusive value="2099"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sostituzione_mandato", propOrder = { "numeroMandatoDaSostituire", "progressivoBeneficiarioDaSostituire", "esercizioMandatoDaSostituire" }) public class SostituzioneMandato { @XmlElement(name = "numero_mandato_da_sostituire") protected int numeroMandatoDaSostituire; @XmlElement(name = "progressivo_beneficiario_da_sostituire", required = true) protected BigInteger progressivoBeneficiarioDaSostituire; @XmlElement(name = "esercizio_mandato_da_sostituire") protected int esercizioMandatoDaSostituire; /** * Gets the value of the numeroMandatoDaSostituire property. * */ public int getNumeroMandatoDaSostituire() { return numeroMandatoDaSostituire; } /** * Sets the value of the numeroMandatoDaSostituire property. * */ public void setNumeroMandatoDaSostituire(int value) { this.numeroMandatoDaSostituire = value; } /** * Gets the value of the progressivoBeneficiarioDaSostituire property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getProgressivoBeneficiarioDaSostituire() { return progressivoBeneficiarioDaSostituire; } /** * Sets the value of the progressivoBeneficiarioDaSostituire property. * * @param value * allowed object is * {@link BigInteger } * */ public void setProgressivoBeneficiarioDaSostituire(BigInteger value) { this.progressivoBeneficiarioDaSostituire = value; } /** * Gets the value of the esercizioMandatoDaSostituire property. * */ public int getEsercizioMandatoDaSostituire() { return esercizioMandatoDaSostituire; } /** * Sets the value of the esercizioMandatoDaSostituire property. * */ public void setEsercizioMandatoDaSostituire(int value) { this.esercizioMandatoDaSostituire = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy