// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * a catalog consists of categories with routes. * * * <p>Java class for catalogType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="catalogType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="category" type="{http://api.routeconverter.com/v1/schemas/route-catalog}categoryType"/> * <element name="route" type="{http://api.routeconverter.com/v1/schemas/route-catalog}routeType"/> * <element name="file" type="{http://api.routeconverter.com/v1/schemas/route-catalog}fileType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "catalogType", propOrder = { "category", "route", "file" }) public class CatalogType { @XmlElement(required = true) protected CategoryType category; @XmlElement(required = true) protected RouteType route; @XmlElement(required = true) protected FileType file; /** * Gets the value of the category property. * * @return * possible object is * {@link CategoryType } * */ public CategoryType getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link CategoryType } * */ public void setCategory(CategoryType value) { this.category = value; } /** * Gets the value of the route property. * * @return * possible object is * {@link RouteType } * */ public RouteType getRoute() { return route; } /** * Sets the value of the route property. * * @param value * allowed object is * {@link RouteType } * */ public void setRoute(RouteType value) { this.route = value; } /** * Gets the value of the file property. * * @return * possible object is * {@link FileType } * */ public FileType getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link FileType } * */ public void setFile(FileType value) { this.file = value; } }