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 VisualFile complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="VisualFile"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="index" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="type" type="{http://www.indra.es/portafirmasws/cws}TypeEnum"/> * <element name="reference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="external-ids" type="{http://www.indra.es/portafirmasws/cws}ExternalIDs" minOccurs="0"/> * <element name="archive-options" type="{http://www.indra.es/portafirmasws/cws}ArchiveOptions" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VisualFile", propOrder = { "index", "type", "reference", "externalIds", "archiveOptions" }) public class VisualFile { protected int index; @XmlElement(required = true) protected TypeEnum type; protected String reference; @XmlElementRef(name = "external-ids", type = JAXBElement.class) protected JAXBElement<ExternalIDs> externalIds; @XmlElementRef(name = "archive-options", type = JAXBElement.class) protected JAXBElement<ArchiveOptions> archiveOptions; /** * Obtiene el valor de la propiedad index. * */ public int getIndex() { return index; } /** * Define el valor de la propiedad index. * */ public void setIndex(int value) { this.index = value; } /** * Obtiene el valor de la propiedad type. * * @return * possible object is * {@link TypeEnum } * */ public TypeEnum getType() { return type; } /** * Define el valor de la propiedad type. * * @param value * allowed object is * {@link TypeEnum } * */ public void setType(TypeEnum value) { this.type = value; } /** * Obtiene el valor de la propiedad reference. * * @return * possible object is * {@link String } * */ public String getReference() { return reference; } /** * Define el valor de la propiedad reference. * * @param value * allowed object is * {@link String } * */ public void setReference(String value) { this.reference = value; } /** * Obtiene el valor de la propiedad externalIds. * * @return * possible object is * {@link JAXBElement }{@code <}{@link ExternalIDs }{@code >} * */ public JAXBElement<ExternalIDs> getExternalIds() { return externalIds; } /** * Define el valor de la propiedad externalIds. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link ExternalIDs }{@code >} * */ public void setExternalIds(JAXBElement<ExternalIDs> value) { this.externalIds = 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; } }