org.opengis.webservice
Interface WebServiceRequest

Show UML class diagram
All Known Subinterfaces:
GetCapabilities

public interface WebServiceRequest

Base interface for all request on OGC Web Services (OWS). Each class that capsulates a request against an OWS has to implements this interface.


Method Summary
 String getId()
          Returns the ID of a request.
 String getRequestParameter()
          Deprecated. should be replaced by a factory class.
 String getServiceName()
          Returns the name of the service that is tagerted by a request.
 Map<String,String> getVendorSpecificParameters()
          Finally, the requests allow for optional vendor-specific parameters (VSPs) that will enhance the results of a request.
 String getVersion()
          Returns the requested service version.
 

Method Detail

getVendorSpecificParameters

Map<String,String> getVendorSpecificParameters()
Finally, the requests allow for optional vendor-specific parameters (VSPs) that will enhance the results of a request. Typically, these are used for private testing of non-standard functionality prior to possible standardization. A generic client is not required or expected to make use of these VSPs.


getId

String getId()
Returns the ID of a request.


getVersion

String getVersion()
Returns the requested service version.


getServiceName

String getServiceName()
Returns the name of the service that is tagerted by a request.


getRequestParameter

String getRequestParameter()
                           throws WebServiceException
Deprecated. should be replaced by a factory class.

Returns the URI of a HTTP GET request. If the request doesn't support HTTP GET a WebServiceException will be thrown

Throws:
WebServiceException


Copyright © 1994-2012 Open Geospatial Consortium. All Rights Reserved.