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 UploadRequestDocument complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="UploadRequestDocument"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <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"/> * <element name="annexes" type="{http://www.indra.es/portafirmasws/cws}Annexes" minOccurs="0"/> * <element name="steps" type="{http://www.indra.es/portafirmasws/cws}Steps"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UploadRequestDocument", propOrder = { "attributes", "archiveOptions", "annexes", "steps" }) public class UploadRequestDocument { @XmlElement(required = true) protected DocumentAttributes attributes; @XmlElementRef(name = "archive-options", type = JAXBElement.class) protected JAXBElement<ArchiveOptions> archiveOptions; protected Annexes annexes; @XmlElement(required = true) protected Steps steps; /** * 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; } /** * Obtiene el valor de la propiedad annexes. * * @return * possible object is * {@link Annexes } * */ public Annexes getAnnexes() { return annexes; } /** * Define el valor de la propiedad annexes. * * @param value * allowed object is * {@link Annexes } * */ public void setAnnexes(Annexes value) { this.annexes = value; } /** * Obtiene el valor de la propiedad steps. * * @return * possible object is * {@link Steps } * */ public Steps getSteps() { return steps; } /** * Define el valor de la propiedad steps. * * @param value * allowed object is * {@link Steps } * */ public void setSteps(Steps value) { this.steps = value; } }