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 Tag complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Tag"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="occurences" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="tag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Tag", namespace = "http://marketplace.aniketos.eu", propOrder = { "occurences", "tag" }) public class Tag { protected Integer occurences; @XmlElementRef(name = "tag", namespace = "http://marketplace.aniketos.eu", type = JAXBElement.class) protected JAXBElement<String> tag; /** * Gets the value of the occurences property. * * @return * possible object is * {@link Integer } * */ public Integer getOccurences() { return occurences; } /** * Sets the value of the occurences property. * * @param value * allowed object is * {@link Integer } * */ public void setOccurences(Integer value) { this.occurences = value; } /** * Gets the value of the tag property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getTag() { return tag; } /** * Sets the value of the tag property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setTag(JAXBElement<String> value) { this.tag = value; } }