01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.vfny.geoserver.wms.servlets;
06:
07: import org.vfny.geoserver.global.WMS;
08:
09: /**
10: * GetMap handler that supports the old "request=map" requests (WMS 1.0)
11: * @author aaime
12: */
13: public class GetMapLegacy extends GetMap {
14: public GetMapLegacy(WMS wms) {
15: super ("map", wms);
16: }
17: }
|