// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.06.09 at 05:55:17 PM CEST // package slash.navigation.routes.remote.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * * a category has a name, subcategories and routes * * * <p>Java class for categoryType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="categoryType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="category" type="{http://api.routeconverter.com/v1/schemas/route-catalog}categoryType" maxOccurs="unbounded" minOccurs="0"/> * <element name="route" type="{http://api.routeconverter.com/v1/schemas/route-catalog}routeType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="parent" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "categoryType", propOrder = { "category", "route" }) public class CategoryType { protected List<CategoryType> category; protected List<RouteType> route; @XmlAttribute(name = "parent", required = true) protected String parent; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "href", required = true) protected String href; /** * Gets the value of the category property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the category property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCategory().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CategoryType } * * */ public List<CategoryType> getCategory() { if (category == null) { category = new ArrayList<CategoryType>(); } return this.category; } /** * Gets the value of the route property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the route property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRoute().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link RouteType } * * */ public List<RouteType> getRoute() { if (route == null) { route = new ArrayList<RouteType>(); } return this.route; } /** * Gets the value of the parent property. * * @return * possible object is * {@link String } * */ public String getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link String } * */ public void setParent(String value) { this.parent = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } }