/* * 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.gwt2.plugin.wms.client.capabilities.v1_3_0; import com.google.gwt.xml.client.Node; import org.geomajas.gwt2.plugin.wms.client.capabilities.v1_1_1.WmsLayerMetadataUrlInfo111; import org.geomajas.gwt2.plugin.wms.client.capabilities.WmsOnlineResourceInfo; /** * Default {@link org.geomajas.gwt2.plugin.wms.client.capabilities.WmsLayerMetadataUrlInfo} * implementation for WMS 1.3.0. * * @author Pieter De Graef */ public class WmsLayerMetadataUrlInfo130 extends WmsLayerMetadataUrlInfo111 { private static final long serialVersionUID = 100L; public WmsLayerMetadataUrlInfo130(Node node) { super(node); } protected WmsOnlineResourceInfo createOnlineResource(Node node) { return new WmsOnlineResourceInfo130(node); } }