// // 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.10.28 at 03:39:26 PM CET // package slash.navigation.datasources.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * a map is a downloadable with a bounding box * * * <p>Java class for mapType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="mapType"> * <complexContent> * <extension base="{http://api.routeconverter.com/v1/schemas/datasource-catalog}downloadableType"> * <sequence> * <element name="boundingBox" type="{http://api.routeconverter.com/v1/schemas/datasource-catalog}boundingBoxType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mapType", propOrder = { "boundingBox" }) public class MapType extends DownloadableType { protected BoundingBoxType boundingBox; /** * Gets the value of the boundingBox property. * * @return * possible object is * {@link BoundingBoxType } * */ public BoundingBoxType getBoundingBox() { return boundingBox; } /** * Sets the value of the boundingBox property. * * @param value * allowed object is * {@link BoundingBoxType } * */ public void setBoundingBox(BoundingBoxType value) { this.boundingBox = value; } }