package com.axiastudio.suite.interoperabilita.entities; import javax.xml.bind.annotation.*; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "nomeFile", "impronta" }) @XmlRootElement(name = "MetadatiEsterni") public class MetadatiEsterni { @XmlAttribute(name = "codifica", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String codifica; @XmlAttribute(name = "estensione") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String estensione; @XmlAttribute(name = "formato", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String formato; @XmlElement(name = "NomeFile", required = true) protected String nomeFile; @XmlElement(name = "Impronta") protected Impronta impronta; /** * Gets the value of the codifica property. * * @return * possible object is * {@link String } * */ public String getCodifica() { return codifica; } /** * Sets the value of the codifica property. * * @param value * allowed object is * {@link String } * */ public void setCodifica(String value) { this.codifica = value; } /** * Gets the value of the estensione property. * * @return * possible object is * {@link String } * */ public String getEstensione() { return estensione; } /** * Sets the value of the estensione property. * * @param value * allowed object is * {@link String } * */ public void setEstensione(String value) { this.estensione = value; } /** * Gets the value of the formato property. * * @return * possible object is * {@link String } * */ public String getFormato() { return formato; } /** * Sets the value of the formato property. * * @param value * allowed object is * {@link String } * */ public void setFormato(String value) { this.formato = value; } /** * Gets the value of the nomeFile property. * * @return * possible object is * {@link String } * */ public String getNomeFile() { return nomeFile; } /** * Sets the value of the nomeFile property. * * @param value * allowed object is * {@link String } * */ public void setNomeFile(String value) { this.nomeFile = value; } /** * Gets the value of the impronta property. * * @return * possible object is * {@link Impronta } * */ public Impronta getImpronta() { return impronta; } /** * Sets the value of the impronta property. * * @param value * allowed object is * {@link Impronta } * */ public void setImpronta(Impronta value) { this.impronta = value; } }