| java.lang.Object org.vfny.geoserver.wcs.responses.WCSCapabilitiesResponse
WCSCapabilitiesResponse | public class WCSCapabilitiesResponse implements Response(Code) | | DOCUMENT ME!
author: $Author: Alessio Fabiani (alessio.fabiani@gmail.com) $ (last author: modification) author: $Author: Simone Giannecchini (simboss1@gmail.com) $ (last author: modification) |
Method Summary | |
public void | abort(Service gs) Does nothing, since no processing is done after execute()
has returned. | public void | execute(Request request) | public String | getContentDisposition() Just returns null , since no special encoding is applyed
to the output data. | public String | getContentEncoding() Just returns null , since no special encoding is applyed
to the output data. | public String | getContentType(GeoServer gs) Returns the fixed capabilities MIME type (application/vnd.ogc.WCS_xml) as
specified in whe WCS spec, version 1.1.1, section 6.5.3, table 3. | public HashMap | getResponseHeaders() Returns any extra headers that this service might want to set in the HTTP response object. | public void | writeTo(OutputStream out) Writes the capabilities document generated in execute() to
the given output stream. |
WCSCapabilitiesResponse | public WCSCapabilitiesResponse(ApplicationContext applicationContext)(Code) | | |
abort | public void abort(Service gs)(Code) | | Does nothing, since no processing is done after execute()
has returned.
Parameters: gs - the service instance |
getContentDisposition | public String getContentDisposition()(Code) | | Just returns null , since no special encoding is applyed
to the output data.
null |
getContentEncoding | public String getContentEncoding()(Code) | | Just returns null , since no special encoding is applyed
to the output data.
null |
getContentType | public String getContentType(GeoServer gs) throws IllegalStateException(Code) | | Returns the fixed capabilities MIME type (application/vnd.ogc.WCS_xml) as
specified in whe WCS spec, version 1.1.1, section 6.5.3, table 3.
Parameters: gs - DOCUMENT ME! the capabilities document MIME type. throws: IllegalStateException - if the response was not yet produced. |
|
|