package eu.aniketos.ncvm.marketplace.client; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MarketplaceSearchParams complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MarketplaceSearchParams"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="operations" type="{http://marketplace.aniketos.eu/}ArrayOfString" minOccurs="0"/> * <element name="owner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="securityProperty" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="tags" type="{http://marketplace.aniketos.eu/}ArrayOfString" minOccurs="0"/> * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MarketplaceSearchParams", namespace = "http://marketplace.aniketos.eu", propOrder = { "description", "name", "operations", "owner", "securityProperty", "tags", "url" }) public class MarketplaceSearchParams { @XmlElementRef(name = "description", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> description; @XmlElementRef(name = "name", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> name; @XmlElementRef(name = "operations", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<ArrayOfString> operations; @XmlElementRef(name = "owner", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> owner; @XmlElementRef(name = "securityProperty", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> securityProperty; @XmlElementRef(name = "tags", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<ArrayOfString> tags; @XmlElementRef(name = "url", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> url; /** * Gets the value of the description property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setDescription(JAXBElement<String> value) { this.description = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setName(JAXBElement<String> value) { this.name = value; } /** * Gets the value of the operations property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link ArrayOfString }{@code >} * */ public JAXBElement<ArrayOfString> getOperations() { return operations; } /** * Sets the value of the operations property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link ArrayOfString }{@code >} * */ public void setOperations(JAXBElement<ArrayOfString> value) { this.operations = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setOwner(JAXBElement<String> value) { this.owner = value; } /** * Gets the value of the securityProperty property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getSecurityProperty() { return securityProperty; } /** * Sets the value of the securityProperty property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setSecurityProperty(JAXBElement<String> value) { this.securityProperty = value; } /** * Gets the value of the tags property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link ArrayOfString }{@code >} * */ public JAXBElement<ArrayOfString> getTags() { return tags; } /** * Sets the value of the tags property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link ArrayOfString }{@code >} * */ public void setTags(JAXBElement<ArrayOfString> value) { this.tags = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setUrl(JAXBElement<String> value) { this.url = value; } }