// // 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.tarsu; 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.XmlType; /** *
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="SedeRogante"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <length value="4"/> * </restriction> * </simpleType> * </element> * <element name="Data"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <length value="8"/> * </restriction> * </simpleType> * </element> * <element name="Repertorio"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Numero"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <maxInclusive value="7"/> * </restriction> * </simpleType> * </element> * <element name="Raccolta"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <maxInclusive value="5"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sedeRogante", "data", "repertorio" }) @XmlRootElement(name = "DatiAtto") public class DatiAtto { @XmlElement(name = "SedeRogante", required = true) protected String sedeRogante; @XmlElement(name = "Data", required = true) protected String data; @XmlElement(name = "Repertorio", required = true) protected DatiAtto.Repertorio repertorio; /** * Recupera il valore della proprietà sedeRogante. * * @return * possible object is * {@link String } * */ public String getSedeRogante() { return sedeRogante; } /** * Imposta il valore della proprietà sedeRogante. * * @param value * allowed object is * {@link String } * */ public void setSedeRogante(String value) { this.sedeRogante = value; } /** * Recupera il valore della proprietà data. * * @return * possible object is * {@link String } * */ public String getData() { return data; } /** * Imposta il valore della proprietà data. * * @param value * allowed object is * {@link String } * */ public void setData(String value) { this.data = value; } /** * Recupera il valore della proprietà repertorio. * * @return * possible object is * {@link DatiAtto.Repertorio } * */ public DatiAtto.Repertorio getRepertorio() { return repertorio; } /** * Imposta il valore della proprietà repertorio. * * @param value * allowed object is * {@link DatiAtto.Repertorio } * */ public void setRepertorio(DatiAtto.Repertorio value) { this.repertorio = 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="Numero"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <maxInclusive value="7"/> * </restriction> * </simpleType> * </element> * <element name="Raccolta"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> * <maxInclusive value="5"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numero", "raccolta" }) public static class Repertorio { @XmlElement(name = "Numero") protected int numero; @XmlElement(name = "Raccolta") protected int raccolta; /** * Recupera il valore della proprietà numero. * */ public int getNumero() { return numero; } /** * Imposta il valore della proprietà numero. * */ public void setNumero(int value) { this.numero = value; } /** * Recupera il valore della proprietà raccolta. * */ public int getRaccolta() { return raccolta; } /** * Imposta il valore della proprietà raccolta. * */ public void setRaccolta(int value) { this.raccolta = value; } } }