package com.axiastudio.suite.interoperabilita.entities; import javax.xml.bind.annotation.*; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "denominazione", "identificativo", "persona" }) @XmlRootElement(name = "Ruolo") public class Ruolo { @XmlElement(name = "Denominazione", required = true) protected Denominazione denominazione; @XmlElement(name = "Identificativo") protected String identificativo; @XmlElement(name = "Persona") protected Persona persona; /** * Gets the value of the denominazione property. * * @return * possible object is * {@link Denominazione } * */ public Denominazione getDenominazione() { return denominazione; } /** * Sets the value of the denominazione property. * * @param value * allowed object is * {@link Denominazione } * */ public void setDenominazione(Denominazione value) { this.denominazione = value; } /** * Gets the value of the identificativo property. * * @return * possible object is * {@link String } * */ public String getIdentificativo() { return identificativo; } /** * Sets the value of the identificativo property. * * @param value * allowed object is * {@link String } * */ public void setIdentificativo(String value) { this.identificativo = value; } /** * Gets the value of the persona property. * * @return * possible object is * {@link Persona } * */ public Persona getPersona() { return persona; } /** * Sets the value of the persona property. * * @param value * allowed object is * {@link Persona } * */ public void setPersona(Persona value) { this.persona = value; } }