// // Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.10-b140802.1033 // Vedere http://java.sun.com/xml/jaxb // Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine. // Generato il: 2017.05.05 alle 05:49:34 PM CEST // package it.liguriadigitale.sxcrj.console.business.staging.impl.level1.caricamento.fornitura.xsd.parser.ici; 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; /** *
Classe Java per QuoteDiritti complex type. * *
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * *
* <complexType name="QuoteDiritti"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.agenziaterritorio.it/ICI.xsd}CodiceDiritto"/> * <element name="QuotaNumeratore" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * <element name="QuotaDenominatore" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}positiveInteger"> * <totalDigits value="6"/> * </restriction> * </simpleType> * </element> * <element ref="{http://www.agenziaterritorio.it/ICI.xsd}Regime" minOccurs="0"/> * <element ref="{http://www.agenziaterritorio.it/ICI.xsd}SoggettoRiferimento" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuoteDiritti", propOrder = { "codiceDiritto", "quotaNumeratore", "quotaDenominatore", "regime", "soggettoRiferimento" }) public class QuoteDiritti { @XmlElement(name = "CodiceDiritto", required = true) protected String codiceDiritto; @XmlElement(name = "QuotaNumeratore") protected Object quotaNumeratore; @XmlElement(name = "QuotaDenominatore") protected BigInteger quotaDenominatore; @XmlElement(name = "Regime") protected String regime; @XmlElement(name = "SoggettoRiferimento") protected BigInteger soggettoRiferimento; /** * Recupera il valore della proprietà codiceDiritto. * * @return * possible object is * {@link String } * */ public String getCodiceDiritto() { return codiceDiritto; } /** * Imposta il valore della proprietà codiceDiritto. * * @param value * allowed object is * {@link String } * */ public void setCodiceDiritto(String value) { this.codiceDiritto = value; } /** * Recupera il valore della proprietà quotaNumeratore. * * @return * possible object is * {@link Object } * */ public Object getQuotaNumeratore() { return quotaNumeratore; } /** * Imposta il valore della proprietà quotaNumeratore. * * @param value * allowed object is * {@link Object } * */ public void setQuotaNumeratore(Object value) { this.quotaNumeratore = value; } /** * Recupera il valore della proprietà quotaDenominatore. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getQuotaDenominatore() { return quotaDenominatore; } /** * Imposta il valore della proprietà quotaDenominatore. * * @param value * allowed object is * {@link BigInteger } * */ public void setQuotaDenominatore(BigInteger value) { this.quotaDenominatore = value; } /** * Recupera il valore della proprietà regime. * * @return * possible object is * {@link String } * */ public String getRegime() { return regime; } /** * Imposta il valore della proprietà regime. * * @param value * allowed object is * {@link String } * */ public void setRegime(String value) { this.regime = value; } /** * Recupera il valore della proprietà soggettoRiferimento. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSoggettoRiferimento() { return soggettoRiferimento; } /** * Imposta il valore della proprietà soggettoRiferimento. * * @param value * allowed object is * {@link BigInteger } * */ public void setSoggettoRiferimento(BigInteger value) { this.soggettoRiferimento = value; } }