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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para anonymous complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="application" type="{http://www.indra.es/portafirmasws/cws}Application"/> * <element name="documents" type="{http://www.indra.es/portafirmasws/cws}ListRequestDocuments" minOccurs="0"/> * <element name="search-criterias" type="{http://www.indra.es/portafirmasws/cws}SearchCriterias" minOccurs="0"/> * </sequence> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "application", "documents", "searchCriterias" }) @XmlRootElement(name = "list-request") public class ListRequest { @XmlElement(required = true) protected Application application; protected ListRequestDocuments documents; @XmlElementRef(name = "search-criterias", type = JAXBElement.class) protected JAXBElement<SearchCriterias> searchCriterias; @XmlAttribute(name = "version") protected String version; /** * Obtiene el valor de la propiedad application. * * @return * possible object is * {@link Application } * */ public Application getApplication() { return application; } /** * Define el valor de la propiedad application. * * @param value * allowed object is * {@link Application } * */ public void setApplication(Application value) { this.application = value; } /** * Obtiene el valor de la propiedad documents. * * @return * possible object is * {@link ListRequestDocuments } * */ public ListRequestDocuments getDocuments() { return documents; } /** * Define el valor de la propiedad documents. * * @param value * allowed object is * {@link ListRequestDocuments } * */ public void setDocuments(ListRequestDocuments value) { this.documents = value; } /** * Obtiene el valor de la propiedad searchCriterias. * * @return * possible object is * {@link JAXBElement }{@code <}{@link SearchCriterias }{@code >} * */ public JAXBElement<SearchCriterias> getSearchCriterias() { return searchCriterias; } /** * Define el valor de la propiedad searchCriterias. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link SearchCriterias }{@code >} * */ public void setSearchCriterias(JAXBElement<SearchCriterias> value) { this.searchCriterias = value; } /** * Obtiene el valor de la propiedad version. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Define el valor de la propiedad version. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }