org.deegree.services
Interface OGCWebServiceResponse

All Known Subinterfaces:
CASDescribeRecordTypeResponse, CASGetCapabilitiesResponse, CASGetRecordResponse, CASTransactionResponse, DescribeTransformationResponse, GetCapabilitiesResponse, IsTransformableResponse, TransformResponse, WCSGetCoverageResponse, WFSBasicResponse, WFSDescribeFeatureTypeResponse, WFSGetCapabilitiesResponse, WFSGetFeatureResponse, WFSGetFeatureWithLockResponse, WFSGGetCapabilitiesResponse, WFSGGetFeatureResponse, WFSLockFeatureResponse, WFSTransactionResponse, WMSDescribeLayerResponse, WMSGetCapabilitiesResponse, WMSGetFeatureInfoResponse, WMSGetLegendGraphicResponse, WMSGetMapResponse, WMSGetScaleBarResponse, WMSGetStylesResponse, WMSPutStylesResponse, WTSGetCapabilitiesResponse, WTSGetViewResponse
All Known Implementing Classes:
CASDescribeRecordTypeResponse_Impl, CASGetCapabilitiesResponse_Impl, CASGetRecordResponse_Impl, CASTransactionResponse_Impl, DescribeTransformationResponse_Impl, GetCapabilitiesResponse_Impl, IsTransformableResponse_Impl, OGCWebServiceResponse_Impl, TransformResponse_Impl, WCSGetCoverageResponse_Impl, WFSBasicResponse_Impl, WFSDescribeFeatureTypeResponse_Impl, WFSGetCapabilitiesResponse_Impl, WFSGetFeatureResponse_Impl, WFSGetFeatureWithLockResponse_Impl, WFSGGetCapabilitiesResponse_Impl, WFSGGetFeatureResponse_Impl, WFSLockFeatureResponse_Impl, WFSTransactionResponse_Impl, WMSDescribeLayerResponse_Impl, WMSGetCapabilitiesResponse_Impl, WMSGetFeatureInfoResponse_Impl, WMSGetLegendGraphicResponse_Impl, WMSGetMapResponse_Impl, WMSGetScaleBarResponse_Impl, WTSGetCapabilitiesResponse_Impl, WTSGetViewResponse_Impl

public interface OGCWebServiceResponse

This is the base interface for all responses to OGC Web Services (OWS) requests. Each class that capsulates a response within an OWS has to implement this interface.

--------------------------------------------------------------------

Version:
2002-03-01
Author:
Andreas Poth

Method Summary
 org.w3c.dom.Document getException()
          returns an XML encoding of the exception that raised.
 OGCWebServiceRequest getRequest()
          returns the request that causes the response.
 void setException(org.w3c.dom.Document exception)
          sets an XML encoding of the exception that raised.
 void setRequest(OGCWebServiceRequest request)
          sets the request that causes the response.
 

Method Detail

getRequest

public OGCWebServiceRequest getRequest()
returns the request that causes the response.


setRequest

public void setRequest(OGCWebServiceRequest request)
sets the request that causes the response.


getException

public org.w3c.dom.Document getException()
returns an XML encoding of the exception that raised. If no exception raised null will be returned.


setException

public void setException(org.w3c.dom.Document exception)
sets an XML encoding of the exception that raised. If no exception raised null will be returned.