// // 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; /** * * a route has a category, a description, a creator and an url where to find the route * * * <p>Java class for routeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="routeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="category" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="creator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="url" 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 = "routeType") public class RouteType { @XmlAttribute(name = "category", required = true) protected String category; @XmlAttribute(name = "description", required = true) protected String description; @XmlAttribute(name = "creator", required = true) protected String creator; @XmlAttribute(name = "url", required = true) protected String url; @XmlAttribute(name = "href", required = true) protected String href; /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the creator property. * * @return * possible object is * {@link String } * */ public String getCreator() { return creator; } /** * Sets the value of the creator property. * * @param value * allowed object is * {@link String } * */ public void setCreator(String value) { this.creator = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = 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; } }