// // 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.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * * a theme is an XML file with references to images * * * <p>Java class for themeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="themeType"> * <complexContent> * <extension base="{http://api.routeconverter.com/v1/schemas/datasource-catalog}downloadableType"> * <attribute name="imageUrl" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "themeType") public class ThemeType extends DownloadableType { @XmlAttribute(name = "imageUrl") protected String imageUrl; /** * Gets the value of the imageUrl property. * * @return * possible object is * {@link String } * */ public String getImageUrl() { return imageUrl; } /** * Sets the value of the imageUrl property. * * @param value * allowed object is * {@link String } * */ public void setImageUrl(String value) { this.imageUrl = value; } }