package com.axiastudio.suite.interoperabilita.entities; import javax.xml.bind.annotation.*; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "codiceAmministrazione", "codiceAOO", "codiceRegistro", "numeroRegistrazione", "dataRegistrazione" }) @XmlRootElement(name = "Identificatore") public class Identificatore { @XmlElement(name = "CodiceAmministrazione", required = true) protected String codiceAmministrazione; @XmlElement(name = "CodiceAOO", required = true) protected String codiceAOO; @XmlElement(name = "CodiceRegistro", required = true) protected String codiceRegistro; @XmlElement(name = "NumeroRegistrazione", required = true) protected String numeroRegistrazione; @XmlElement(name = "DataRegistrazione", required = true) protected String dataRegistrazione; /** * 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 codiceRegistro property. * * @return * possible object is * {@link String } * */ public String getCodiceRegistro() { return codiceRegistro; } /** * Sets the value of the codiceRegistro property. * * @param value * allowed object is * {@link String } * */ public void setCodiceRegistro(String value) { this.codiceRegistro = value; } /** * Gets the value of the numeroRegistrazione property. * * @return * possible object is * {@link String } * */ public String getNumeroRegistrazione() { return numeroRegistrazione; } /** * Sets the value of the numeroRegistrazione property. * * @param value * allowed object is * {@link String } * */ public void setNumeroRegistrazione(String value) { this.numeroRegistrazione = value; } /** * Gets the value of the dataRegistrazione property. * * @return * possible object is * {@link String } * */ public String getDataRegistrazione() { return dataRegistrazione; } /** * Sets the value of the dataRegistrazione property. * * @param value * allowed object is * {@link String } * */ public void setDataRegistrazione(String value) { this.dataRegistrazione = value; } }