// // 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:35 PM CEST // package it.liguriadigitale.sxcrj.console.business.staging.impl.level1.caricamento.fornitura.xsd.parser.segnatura; 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 ref="{http://www.sigmater.it/Segnatura.xsd}Denominazione"/>
 *         <element name="Identificativo" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "denominazione", "identificativo" }) @XmlRootElement(name = "ns4:Ruolo") public class Ruolo { @XmlElement(name = "ns4:Denominazione", required = true) protected String denominazione; @XmlElement(name = "ns4:Identificativo", required = true) protected String identificativo; /** * Recupera il valore della proprietà denominazione. * * @return * possible object is * {@link String } * */ public String getDenominazione() { return denominazione; } /** * Imposta il valore della proprietà denominazione. * * @param value * allowed object is * {@link String } * */ public void setDenominazione(String value) { this.denominazione = value; } /** * Recupera il valore della proprietà identificativo. * * @return * possible object is * {@link String } * */ public String getIdentificativo() { return identificativo; } /** * Imposta il valore della proprietà identificativo. * * @param value * allowed object is * {@link String } * */ public void setIdentificativo(String value) { this.identificativo = value; } }