// // 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:37 PM CEST // package it.liguriadigitale.sxcrj.console.business.staging.impl.level1.caricamento.fornitura.xsd.parser.moduloplus.ricevuta; 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.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="IdRichiesta" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 *         <element name="DataOra" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "idRicevuta", "idRichiesta", "dataOra" }) @XmlRootElement(name = "Ricevuta") public class Ricevuta { @XmlElement(name = "IdRicevuta", required = true) protected String idRicevuta; @XmlElement(name = "IdRichiesta", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger idRichiesta; @XmlElement(name = "DataOra", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dataOra; /** * 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à idRichiesta. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIdRichiesta() { return idRichiesta; } /** * Imposta il valore della proprietà idRichiesta. * * @param value * allowed object is * {@link BigInteger } * */ public void setIdRichiesta(BigInteger value) { this.idRichiesta = 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; } }