// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // 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: 2016.07.02 at 08:56:34 AM MESZ // package slash.navigation.mapview.tileserver.binding; import java.math.BigInteger; 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 javax.xml.bind.annotation.XmlValue; /** * * a tile server contains an id, a name, a minimum and maximum zoom level, a copyright and a tile url pattern * * * <p>Java class for tileServerType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tileServerType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="id" 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="minZoom" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="maxZoom" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="copyright" use="required" type="{http://api.routeconverter.com/v1/schemas/tileserver-catalog}copyrightType" /> * <attribute name="active" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tileServerType", propOrder = { "value" }) public class TileServerType { @XmlValue protected String value; @XmlAttribute(required = true) protected String id; @XmlAttribute(required = true) protected String name; @XmlAttribute(required = true) protected BigInteger minZoom; @XmlAttribute(required = true) protected BigInteger maxZoom; @XmlAttribute(required = true) protected CopyrightType copyright; @XmlAttribute protected Boolean active; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = 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 minZoom property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMinZoom() { return minZoom; } /** * Sets the value of the minZoom property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMinZoom(BigInteger value) { this.minZoom = value; } /** * Gets the value of the maxZoom property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaxZoom() { return maxZoom; } /** * Sets the value of the maxZoom property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaxZoom(BigInteger value) { this.maxZoom = value; } /** * Gets the value of the copyright property. * * @return * possible object is * {@link CopyrightType } * */ public CopyrightType getCopyright() { return copyright; } /** * Sets the value of the copyright property. * * @param value * allowed object is * {@link CopyrightType } * */ public void setCopyright(CopyrightType value) { this.copyright = value; } /** * Gets the value of the active property. * * @return * possible object is * {@link Boolean } * */ public Boolean getActive() { return active; } /** * Sets the value of the active property. * * @param value * allowed object is * {@link Boolean } * */ public void setActive(Boolean value) { this.active = value; } }