Package com.luciad.wms.client.model
Class TLcdWMSDescribeLayerRequest
java.lang.Object
com.luciad.wms.client.model.TLcdWMSDescribeLayerRequest
- All Implemented Interfaces:
ILcdOWSRequest
A class which represents a WMS
DescribeLayer request.
Instances of this class can be created using the
TLcdWMSClient.createDescribeLayerRequest() method.
This method will ensure a request object is created that is compatible with the WMS version
implemented by the WMS server.- Since:
- 9.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns a key-value pair (KVP) encoding of this request.getRestEncoding(URI aBaseURI) Returnsnull, REST encoding is not supported.Returns an object representing data to be used by the transportation layer (seeILcdOWSTransport) to perform this OGC Web Service request.Returns the XML encoding of this request.voidsetNamedLayer(String aLayerName) Sets the layer to display in the result.voidsetNamedLayers(List<String> aLayerNames) Sets the list of layers which will be displayed in the result.voidsetTransportData(Object aTransportData) Sets an object representing data to be used by the transportation layer (seeILcdOWSTransport) to perform this OGC Web Service request.
-
Method Details
-
setNamedLayer
Sets the layer to display in the result. All previously set names will be cleared.- Parameters:
aLayerName- A valid layer name.- See Also:
-
setNamedLayers
Sets the list of layers which will be displayed in the result. The names in the list should correspond to layer names in the capabilities document of the server. All previously set names will be cleared.- Parameters:
aLayerNames- A list containing layer names.- See Also:
-
getKVPEncoding
Description copied from interface:ILcdOWSRequestReturns a key-value pair (KVP) encoding of this request. If no key-value pairs are defined, an empty map should be returned. If no key-value pair encoding is supported for this request,nullshould be returned.- Specified by:
getKVPEncodingin interfaceILcdOWSRequest- Returns:
- the key-value pair (KVP) representation of this request.
-
getXMLEncoding
Description copied from interface:ILcdOWSRequestReturns the XML encoding of this request. If no XML encoding is supported for this request,nullshould be returned.- Specified by:
getXMLEncodingin interfaceILcdOWSRequest- Returns:
- the XML representation of this request.
-
setTransportData
Sets an object representing data to be used by the transportation layer (seeILcdOWSTransport) to perform this OGC Web Service request. The type of object and the data contained in it depends on theILcdOWSTransportobject used to perform this request.- Parameters:
aTransportData- an object representing data to be used by the transportation layer to perform this OGC Web Service request.- See Also:
-
getTransportData
Description copied from interface:ILcdOWSRequestReturns an object representing data to be used by the transportation layer (seeILcdOWSTransport) to perform this OGC Web Service request. The type of object and the data contained in it depends on theILcdOWSTransportobject used to perform this request. An example in the case of a HTTP transport connection is a map of request properties (seeURLConnection.getRequestProperties()) to be used for the request.- Specified by:
getTransportDatain interfaceILcdOWSRequest- Returns:
- an object representing data to be used by the transportation layer to perform this OGC Web Service request.
-
getRestEncoding
Returnsnull, REST encoding is not supported.- Specified by:
getRestEncodingin interfaceILcdOWSRequest- Parameters:
aBaseURI-- Returns:
null- Since:
- 2013.0
-