package com.axiastudio.suite.interoperabilita.entities; import javax.xml.bind.annotation.*; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "Livello") public class Livello { @XmlAttribute(name = "nome") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String nome; @XmlValue protected String value; /** * Gets the value of the nome property. * * @return * possible object is * {@link String } * */ public String getNome() { return nome; } /** * Sets the value of the nome property. * * @param value * allowed object is * {@link String } * */ public void setNome(String value) { this.nome = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getvalue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setvalue(String value) { this.value = value; } }