| java.lang.Object org.vfny.geoserver.wms.responses.DescribeLayerResponse
DescribeLayerResponse | public class DescribeLayerResponse implements Response(Code) | | Executes a DescribeLayer WMS request.
Recieves a DescribeLayerRequest object holding the references to
the requested layers and utilizes a transformer based on the org.geotools.xml.transform
framework to encode the response.
author: Gabriel Roldan, Axios Engineering version: $Id: DescribeLayerResponse.java 7746 2007-11-13 15:38:35Z aaime $ |
Method Summary | |
public void | abort(Service gs) Do nothing, since execute() took care of obtaining the
response, and after that nothing remains to be done but sending the
response content to the client. | public void | execute(Request request) | public String | getContentDisposition() | public String | getContentEncoding() Returns null since no special encoding is applyed to the
response content. | public String | getContentType(GeoServer gs) Returns the fixed "application/vnd.ogc.wms_xml" MIME type
of this response, as specified in SLD 1.0 spec, section 6.7.
Parameters: gs - the geoserver instance config. | 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 this respone to the provided output stream. |
DESCLAYER_MIME_TYPE | final public static String DESCLAYER_MIME_TYPE(Code) | | |
abort | public void abort(Service gs)(Code) | | Do nothing, since execute() took care of obtaining the
response, and after that nothing remains to be done but sending the
response content to the client.
Parameters: gs - |
getContentDisposition | public String getContentDisposition()(Code) | | |
getContentEncoding | public String getContentEncoding()(Code) | | Returns null since no special encoding is applyed to the
response content.
null |
getContentType | public String getContentType(GeoServer gs) throws IllegalStateException(Code) | | Returns the fixed "application/vnd.ogc.wms_xml" MIME type
of this response, as specified in SLD 1.0 spec, section 6.7.
Parameters: gs - the geoserver instance config. Not used here. "application/vnd.ogc.wms_xml" as the response MIMEtype throws: IllegalStateException - DOCUMENT ME! |
|
|