package com.axiastudio.suite.interoperabilita.entities;
import javax.xml.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"codiceAmministrazione",
"codiceAOO",
"denominazione",
"livello"
})
@XmlRootElement(name = "Classifica")
public class Classifica {
@XmlElement(name = "CodiceAmministrazione")
protected String codiceAmministrazione;
@XmlElement(name = "CodiceAOO")
protected String codiceAOO;
@XmlElement(name = "Denominazione")
protected Denominazione denominazione;
@XmlElement(name = "Livello", required = true)
protected List<Livello> livello;
/**
* Gets the value of the codiceAmministrazione property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodiceAmministrazione() {
return codiceAmministrazione;
}
/**
* Sets the value of the codiceAmministrazione property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodiceAmministrazione(String value) {
this.codiceAmministrazione = value;
}
/**
* Gets the value of the codiceAOO property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodiceAOO() {
return codiceAOO;
}
/**
* Sets the value of the codiceAOO property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodiceAOO(String value) {
this.codiceAOO = value;
}
/**
* 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 livello property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the livello property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getLivello().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Livello }
*
*
*/
public List<Livello> getLivello() {
if (livello == null) {
livello = new ArrayList<Livello>();
}
return this.livello;
}
}