package net.conselldemallorca.helium.integracio.tramitacio; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for documentTasca complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="documentTasca"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="arxiu" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="codi" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="data" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="descripcio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="nom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="urlCustodia" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "documentTasca", propOrder = { "arxiu", "codi", "data", "descripcio", "id", "nom", "urlCustodia" }) public class DocumentTasca { protected String arxiu; protected String codi; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar data; protected String descripcio; protected Long id; protected String nom; protected String urlCustodia; /** * Gets the value of the arxiu property. * * @return * possible object is * {@link String } * */ public String getArxiu() { return arxiu; } /** * Sets the value of the arxiu property. * * @param value * allowed object is * {@link String } * */ public void setArxiu(String value) { this.arxiu = value; } /** * Gets the value of the codi property. * * @return * possible object is * {@link String } * */ public String getCodi() { return codi; } /** * Sets the value of the codi property. * * @param value * allowed object is * {@link String } * */ public void setCodi(String value) { this.codi = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setData(XMLGregorianCalendar value) { this.data = value; } /** * Gets the value of the descripcio property. * * @return * possible object is * {@link String } * */ public String getDescripcio() { return descripcio; } /** * Sets the value of the descripcio property. * * @param value * allowed object is * {@link String } * */ public void setDescripcio(String value) { this.descripcio = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = 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; } /** * Gets the value of the urlCustodia property. * * @return * possible object is * {@link String } * */ public String getUrlCustodia() { return urlCustodia; } /** * Sets the value of the urlCustodia property. * * @param value * allowed object is * {@link String } * */ public void setUrlCustodia(String value) { this.urlCustodia = value; } }