All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geomajas.plugin.rasterizing.tms.TileMapService Maven / Gradle / Ivy

There is a newer version: 1.18.5
Show newest version
/*
 * This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
 *
 * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium.
 *
 * The program is available in open source according to the GNU Affero
 * General Public License. All contributions in this program are covered
 * by the Geomajas Contributors License Agreement. For full licensing
 * details, see LICENSE.txt in the project root.
 */
package org.geomajas.plugin.rasterizing.tms;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Root element of TMS service definition.
 * 
 * @author Jan De Moerloose
 *
 */
@XmlRootElement(name = "TileMapService")
@XmlAccessorType(XmlAccessType.FIELD)
public class TileMapService {

	@XmlElement(name = "Title")
	private String title;

	@XmlElement(name = "Abstract")
	private String abstractt;

	@XmlElementWrapper(name = "TileMaps")
	@XmlElement(name = "TileMap")
	private List tileMaps = new ArrayList();

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getAbstract() {
		return abstractt;
	}

	public void setAbstract(String abstractt) {
		this.abstractt = abstractt;
	}

	public List getTileMaps() {
		return tileMaps;
	}

	public void setTileMaps(List tileMaps) {
		this.tileMaps = tileMaps;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy