/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved. * This code is licensed under the GPL 2.0 license, availible at the root * application directory. */ package org.vfny.geoserver.wcs.requests; import org.geoserver.wcs.WCSInfo; import org.vfny.geoserver.util.requests.CapabilitiesRequest; /** * Subclass of {@link CapabilitiesRequest} for Web Coverage Service. * * @author Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org * */ public class WCSCapabilitiesRequest extends CapabilitiesRequest { public WCSCapabilitiesRequest(WCSInfo wcs) { super("WCS", wcs); } }