package net.conselldemallorca.helium.ws.tramitacio.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for arxiuProces complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="arxiuProces"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="contingut" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="nom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "arxiuProces", propOrder = { "contingut", "nom" }) public class ArxiuProces { protected byte[] contingut; protected String nom; /** * Gets the value of the contingut property. * * @return * possible object is * byte[] */ public byte[] getContingut() { return contingut; } /** * Sets the value of the contingut property. * * @param value * allowed object is * byte[] */ public void setContingut(byte[] value) { this.contingut = value; } /** * Gets the value of the nom property. * * @return * possible object is * {@link String } * */ public String getNom() { return nom; } /** * Sets the value of the nom property. * * @param value * allowed object is * {@link String } * */ public void setNom(String value) { this.nom = value; } }