// // 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.30 alle 05:49:59 PM CEST // package it.liguriadigitale.sxcrj.console.business.staging.impl.level1.caricamento.fornitura.xsd.parser.tares; 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" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <length value="4"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="Data" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <length value="8"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="Repertorio" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Numero" minOccurs="0">
 *                     <simpleType>
 *                       <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *                       </restriction>
 *                     </simpleType>
 *                   </element>
 *                   <element name="Raccolta" minOccurs="0">
 *                     <simpleType>
 *                       <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *                       </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") protected String sedeRogante; @XmlElement(name = "Data") protected String data; @XmlElement(name = "Repertorio") 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" minOccurs="0">
     *           <simpleType>
     *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
     *             </restriction>
     *           </simpleType>
     *         </element>
     *         <element name="Raccolta" minOccurs="0">
     *           <simpleType>
     *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
     *             </restriction>
     *           </simpleType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numero", "raccolta" }) public static class Repertorio { @XmlElement(name = "Numero") protected Integer numero; @XmlElement(name = "Raccolta") protected Integer raccolta; /** * Recupera il valore della proprietà numero. * * @return * possible object is * {@link Integer } * */ public Integer getNumero() { return numero; } /** * Imposta il valore della proprietà numero. * * @param value * allowed object is * {@link Integer } * */ public void setNumero(Integer value) { this.numero = value; } /** * Recupera il valore della proprietà raccolta. * * @return * possible object is * {@link Integer } * */ public Integer getRaccolta() { return raccolta; } /** * Imposta il valore della proprietà raccolta. * * @param value * allowed object is * {@link Integer } * */ public void setRaccolta(Integer value) { this.raccolta = value; } } }