// // 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:36 PM CEST // package it.liguriadigitale.sxcrj.console.business.staging.impl.level1.caricamento.fornitura.xsd.parser.moduloplus.esiti; 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; /** *
Classe Java per anonymous complex type. * *
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdRicevuta" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="DataOra" type="{http://www.w3.org/2001/XMLSchema}date"/> * <element name="Comune"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <length value="4"/> * </restriction> * </simpleType> * </element> * <element name="Elaborazione"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="InCorso" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="Esiti"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TotaleAggiornamenti" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiNOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="EsitiNegativi" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded"> * <element name="EsitoNegativo"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ElementoDaAggiornare"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="Stradario"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CodTopo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="3"/> * </restriction> * </simpleType> * </element> * <element name="Toponimo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="16"/> * </restriction> * </simpleType> * </element> * <element name="Denom"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="50"/> * </restriction> * </simpleType> * </element> * <element name="Codice" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="5"/> * </restriction> * </simpleType> * </element> * <element name="Fonte"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="1"/> * </restriction> * </simpleType> * </element> * <element name="Delibera" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="70"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Uiu"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </element> * <element name="DescrizioneEsito" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "idRicevuta", "dataOra", "comune", "elaborazione" }) @XmlRootElement(name = "EsitiAggiornamenti") public class EsitiAggiornamenti { @XmlElement(name = "IdRicevuta", required = true) protected String idRicevuta; @XmlElement(name = "DataOra", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dataOra; @XmlElement(name = "Comune", required = true) protected String comune; @XmlElement(name = "Elaborazione", required = true) protected EsitiAggiornamenti.Elaborazione elaborazione; /** * Recupera il valore della proprietà idRicevuta. * * @return * possible object is * {@link String } * */ public String getIdRicevuta() { return idRicevuta; } /** * Imposta il valore della proprietà idRicevuta. * * @param value * allowed object is * {@link String } * */ public void setIdRicevuta(String value) { this.idRicevuta = value; } /** * Recupera il valore della proprietà dataOra. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDataOra() { return dataOra; } /** * Imposta il valore della proprietà dataOra. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDataOra(XMLGregorianCalendar value) { this.dataOra = value; } /** * Recupera il valore della proprietà comune. * * @return * possible object is * {@link String } * */ public String getComune() { return comune; } /** * Imposta il valore della proprietà comune. * * @param value * allowed object is * {@link String } * */ public void setComune(String value) { this.comune = value; } /** * Recupera il valore della proprietà elaborazione. * * @return * possible object is * {@link EsitiAggiornamenti.Elaborazione } * */ public EsitiAggiornamenti.Elaborazione getElaborazione() { return elaborazione; } /** * Imposta il valore della proprietà elaborazione. * * @param value * allowed object is * {@link EsitiAggiornamenti.Elaborazione } * */ public void setElaborazione(EsitiAggiornamenti.Elaborazione value) { this.elaborazione = value; } /** *
Classe Java per anonymous complex type. * *
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="InCorso" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="Esiti"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TotaleAggiornamenti" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiNOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="EsitiNegativi" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded"> * <element name="EsitoNegativo"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ElementoDaAggiornare"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="Stradario"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CodTopo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="3"/> * </restriction> * </simpleType> * </element> * <element name="Toponimo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="16"/> * </restriction> * </simpleType> * </element> * <element name="Denom"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="50"/> * </restriction> * </simpleType> * </element> * <element name="Codice" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="5"/> * </restriction> * </simpleType> * </element> * <element name="Fonte"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="1"/> * </restriction> * </simpleType> * </element> * <element name="Delibera" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="70"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Uiu"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </element> * <element name="DescrizioneEsito" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "inCorso", "esiti" }) public static class Elaborazione { @XmlElement(name = "InCorso") protected Boolean inCorso; @XmlElement(name = "Esiti") protected EsitiAggiornamenti.Elaborazione.Esiti esiti; /** * Recupera il valore della proprietà inCorso. * * @return * possible object is * {@link Boolean } * */ public Boolean isInCorso() { return inCorso; } /** * Imposta il valore della proprietà inCorso. * * @param value * allowed object is * {@link Boolean } * */ public void setInCorso(Boolean value) { this.inCorso = value; } /** * Recupera il valore della proprietà esiti. * * @return * possible object is * {@link EsitiAggiornamenti.Elaborazione.Esiti } * */ public EsitiAggiornamenti.Elaborazione.Esiti getEsiti() { return esiti; } /** * Imposta il valore della proprietà esiti. * * @param value * allowed object is * {@link EsitiAggiornamenti.Elaborazione.Esiti } * */ public void setEsiti(EsitiAggiornamenti.Elaborazione.Esiti value) { this.esiti = value; } /** *
Classe Java per anonymous complex type. * *
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TotaleAggiornamenti" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="AggiornamentiNOK" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * <element name="EsitiNegativi" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded"> * <element name="EsitoNegativo"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ElementoDaAggiornare"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="Stradario"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CodTopo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="3"/> * </restriction> * </simpleType> * </element> * <element name="Toponimo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="16"/> * </restriction> * </simpleType> * </element> * <element name="Denom"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="50"/> * </restriction> * </simpleType> * </element> * <element name="Codice" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="5"/> * </restriction> * </simpleType> * </element> * <element name="Fonte"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="1"/> * </restriction> * </simpleType> * </element> * <element name="Delibera" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="70"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Uiu"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </element> * <element name="DescrizioneEsito" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "totaleAggiornamenti", "aggiornamentiOK", "aggiornamentiNOK", "esitiNegativi" }) public static class Esiti { @XmlElement(name = "TotaleAggiornamenti", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger totaleAggiornamenti; @XmlElement(name = "AggiornamentiOK", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger aggiornamentiOK; @XmlElement(name = "AggiornamentiNOK", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger aggiornamentiNOK; @XmlElement(name = "EsitiNegativi") protected EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi esitiNegativi; /** * Recupera il valore della proprietà totaleAggiornamenti. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTotaleAggiornamenti() { return totaleAggiornamenti; } /** * Imposta il valore della proprietà totaleAggiornamenti. * * @param value * allowed object is * {@link BigInteger } * */ public void setTotaleAggiornamenti(BigInteger value) { this.totaleAggiornamenti = value; } /** * Recupera il valore della proprietà aggiornamentiOK. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAggiornamentiOK() { return aggiornamentiOK; } /** * Imposta il valore della proprietà aggiornamentiOK. * * @param value * allowed object is * {@link BigInteger } * */ public void setAggiornamentiOK(BigInteger value) { this.aggiornamentiOK = value; } /** * Recupera il valore della proprietà aggiornamentiNOK. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAggiornamentiNOK() { return aggiornamentiNOK; } /** * Imposta il valore della proprietà aggiornamentiNOK. * * @param value * allowed object is * {@link BigInteger } * */ public void setAggiornamentiNOK(BigInteger value) { this.aggiornamentiNOK = value; } /** * Recupera il valore della proprietà esitiNegativi. * * @return * possible object is * {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi } * */ public EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi getEsitiNegativi() { return esitiNegativi; } /** * Imposta il valore della proprietà esitiNegativi. * * @param value * allowed object is * {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi } * */ public void setEsitiNegativi(EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi value) { this.esitiNegativi = value; } /** *
Classe Java per anonymous complex type. * *
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. * *
* <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded"> * <element name="EsitoNegativo"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ElementoDaAggiornare"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="Stradario"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CodTopo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="3"/> * </restriction> * </simpleType> * </element> * <element name="Toponimo"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="16"/> * </restriction> * </simpleType> * </element> * <element name="Denom"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="50"/> * </restriction> * </simpleType> * </element> * <element name="Codice" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="5"/> * </restriction> * </simpleType> * </element> * <element name="Fonte"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <totalDigits value="1"/> * </restriction> * </simpleType> * </element> * <element name="Delibera" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="70"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="Uiu"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </element> * <element name="DescrizioneEsito" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "esitoNegativo" }) public static class EsitiNegativi { @XmlElement(name = "EsitoNegativo", required = true) protected List
* 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 esitoNegativo property.
*
*
* For example, to add a new item, do as follows: *
* getEsitoNegativo().add(newItem); ** * *
* Objects of the following type(s) are allowed in the list
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo }
*
*
*/
public List Classe Java per anonymous complex type.
*
* Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
*
* Classe Java per anonymous complex type.
*
* Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
*
* Classe Java per anonymous complex type.
*
* Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
*
* Classe Java per anonymous complex type.
*
* Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ElementoDaAggiornare">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Stradario">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CodTopo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="3"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Toponimo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="16"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Denom">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="50"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Codice" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="5"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Fonte">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Delibera" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="70"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Uiu">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="DescrizioneEsito" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"elementoDaAggiornare",
"descrizioneEsito"
})
public static class EsitoNegativo {
@XmlElement(name = "ElementoDaAggiornare", required = true)
protected EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare elementoDaAggiornare;
@XmlElement(name = "DescrizioneEsito", required = true)
protected String descrizioneEsito;
/**
* Recupera il valore della proprietà elementoDaAggiornare.
*
* @return
* possible object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare }
*
*/
public EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare getElementoDaAggiornare() {
return elementoDaAggiornare;
}
/**
* Imposta il valore della proprietà elementoDaAggiornare.
*
* @param value
* allowed object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare }
*
*/
public void setElementoDaAggiornare(EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare value) {
this.elementoDaAggiornare = value;
}
/**
* Recupera il valore della proprietà descrizioneEsito.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescrizioneEsito() {
return descrizioneEsito;
}
/**
* Imposta il valore della proprietà descrizioneEsito.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescrizioneEsito(String value) {
this.descrizioneEsito = value;
}
/**
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Stradario">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CodTopo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="3"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Toponimo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="16"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Denom">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="50"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Codice" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="5"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Fonte">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Delibera" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="70"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Uiu">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"stradario",
"uiu"
})
public static class ElementoDaAggiornare {
@XmlElement(name = "Stradario")
protected EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Stradario stradario;
@XmlElement(name = "Uiu")
protected EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Uiu uiu;
/**
* Recupera il valore della proprietà stradario.
*
* @return
* possible object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Stradario }
*
*/
public EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Stradario getStradario() {
return stradario;
}
/**
* Imposta il valore della proprietà stradario.
*
* @param value
* allowed object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Stradario }
*
*/
public void setStradario(EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Stradario value) {
this.stradario = value;
}
/**
* Recupera il valore della proprietà uiu.
*
* @return
* possible object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Uiu }
*
*/
public EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Uiu getUiu() {
return uiu;
}
/**
* Imposta il valore della proprietà uiu.
*
* @param value
* allowed object is
* {@link EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Uiu }
*
*/
public void setUiu(EsitiAggiornamenti.Elaborazione.Esiti.EsitiNegativi.EsitoNegativo.ElementoDaAggiornare.Uiu value) {
this.uiu = value;
}
/**
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CodTopo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="3"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Toponimo">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="16"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Denom">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="50"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Codice" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="5"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Fonte">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Delibera" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="70"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"codTopo",
"toponimo",
"denom",
"codice",
"fonte",
"delibera"
})
public static class Stradario {
@XmlElement(name = "CodTopo")
protected int codTopo;
@XmlElement(name = "Toponimo", required = true)
protected String toponimo;
@XmlElement(name = "Denom", required = true)
protected String denom;
@XmlElement(name = "Codice")
protected Integer codice;
@XmlElement(name = "Fonte")
protected int fonte;
@XmlElement(name = "Delibera")
protected String delibera;
/**
* Recupera il valore della proprietà codTopo.
*
*/
public int getCodTopo() {
return codTopo;
}
/**
* Imposta il valore della proprietà codTopo.
*
*/
public void setCodTopo(int value) {
this.codTopo = value;
}
/**
* Recupera il valore della proprietà toponimo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getToponimo() {
return toponimo;
}
/**
* Imposta il valore della proprietà toponimo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setToponimo(String value) {
this.toponimo = value;
}
/**
* Recupera il valore della proprietà denom.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDenom() {
return denom;
}
/**
* Imposta il valore della proprietà denom.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDenom(String value) {
this.denom = value;
}
/**
* Recupera il valore della proprietà codice.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCodice() {
return codice;
}
/**
* Imposta il valore della proprietà codice.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCodice(Integer value) {
this.codice = value;
}
/**
* Recupera il valore della proprietà fonte.
*
*/
public int getFonte() {
return fonte;
}
/**
* Imposta il valore della proprietà fonte.
*
*/
public void setFonte(int value) {
this.fonte = value;
}
/**
* Recupera il valore della proprietà delibera.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelibera() {
return delibera;
}
/**
* Imposta il valore della proprietà delibera.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDelibera(String value) {
this.delibera = value;
}
}
/**
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IdUiu" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* <element name="Prog" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"idUiu",
"prog"
})
public static class Uiu {
@XmlElement(name = "IdUiu", required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger idUiu;
@XmlElement(name = "Prog", required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger prog;
/**
* Recupera il valore della proprietà idUiu.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getIdUiu() {
return idUiu;
}
/**
* Imposta il valore della proprietà idUiu.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setIdUiu(BigInteger value) {
this.idUiu = value;
}
/**
* Recupera il valore della proprietà prog.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getProg() {
return prog;
}
/**
* Imposta il valore della proprietà prog.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setProg(BigInteger value) {
this.prog = value;
}
}
}
}
}
}
}
}