package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para ArchiveMetadata complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="ArchiveMetadata"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="profile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArchiveMetadata", propOrder = { "name", "value", "profile" }) public class ArchiveMetadata { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String value; protected String profile; /** * Obtiene el valor de la propiedad name. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Define el valor de la propiedad name. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Obtiene el valor de la propiedad value. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Define el valor de la propiedad value. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Obtiene el valor de la propiedad profile. * * @return * possible object is * {@link String } * */ public String getProfile() { return profile; } /** * Define el valor de la propiedad profile. * * @param value * allowed object is * {@link String } * */ public void setProfile(String value) { this.profile = value; } }