package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para ListResponseDocument complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="ListResponseDocument"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="attributes" type="{http://www.indra.es/portafirmasws/cws}DocumentAttributes"/> * <element name="archive-options" type="{http://www.indra.es/portafirmasws/cws}ArchiveOptions" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ListResponseDocument", propOrder = { "id", "attributes", "archiveOptions" }) public class ListResponseDocument { protected int id; @XmlElement(required = true) protected DocumentAttributes attributes; @XmlElementRef(name = "archive-options", type = JAXBElement.class) protected JAXBElement<ArchiveOptions> archiveOptions; /** * Obtiene el valor de la propiedad id. * */ public int getId() { return id; } /** * Define el valor de la propiedad id. * */ public void setId(int value) { this.id = value; } /** * Obtiene el valor de la propiedad attributes. * * @return * possible object is * {@link DocumentAttributes } * */ public DocumentAttributes getAttributes() { return attributes; } /** * Define el valor de la propiedad attributes. * * @param value * allowed object is * {@link DocumentAttributes } * */ public void setAttributes(DocumentAttributes value) { this.attributes = value; } /** * Obtiene el valor de la propiedad archiveOptions. * * @return * possible object is * {@link JAXBElement }{@code <}{@link ArchiveOptions }{@code >} * */ public JAXBElement<ArchiveOptions> getArchiveOptions() { return archiveOptions; } /** * Define el valor de la propiedad archiveOptions. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link ArchiveOptions }{@code >} * */ public void setArchiveOptions(JAXBElement<ArchiveOptions> value) { this.archiveOptions = value; } }