Package com.luciad.wms.server
Class TLcdWMSRequestContext
java.lang.Object
com.luciad.ogc.common.ALcdRequestContext
com.luciad.wms.server.TLcdWMSRequestContext
This class holds a HTTP request and several parameters used in a WMS request.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the parsed bounds specified in the request, if available.jakarta.servlet.http.HttpServletRequest
Returns the base HTTP servlet request.String[]
Returns the parsed layers parameter specified in the request, if available.Returns the request that is currently being handled.String[]
Returns the parsed styles specified in the request, if available.Returns the capabilities of the server.Returns theILcdWMSOnlineResourceResolver
that is used to retrieve the paths (typically URLs) to online resources defined by the WMS specification.Returns the parsed world reference specified in the request, if available.
-
Method Details
-
getRequest
Description copied from class:ALcdRequestContext
Returns the request that is currently being handled.- Specified by:
getRequest
in classALcdRequestContext
- Returns:
- the request that is currently being handled.
-
getHttpServletRequest
public jakarta.servlet.http.HttpServletRequest getHttpServletRequest()Returns the base HTTP servlet request.- Returns:
- the base HTTP servlet request.
-
getWMSCapabilities
Returns the capabilities of the server.- Returns:
- the capabilities of the server.
-
getLayers
Returns the parsed layers parameter specified in the request, if available. Note that this parameter is only available forGetMap
,GetFeatureInfo
,DescribeLayer
andGetLegendGraphic
requests.- Returns:
- the parsed layers specified in the request or
null
if not available.
-
getStyles
Returns the parsed styles specified in the request, if available. Note that this parameter is only available forGetMap
,GetFeatureInfo
andGetLegendGraphic
requests.- Returns:
- the parsed styles specified in the request or
null
if not available.
-
getBounds
Returns the parsed bounds specified in the request, if available. Note that this parameter is only available forGetMap
andGetFeatureInfo
requests.- Returns:
- the parsed bounds specified in the request or
null
if not available.
-
getWorldReference
Returns the parsed world reference specified in the request, if available. Note that this parameter is only available forGetMap
andGetFeatureInfo
requests.- Returns:
- the parsed world reference specified in the request or
null
if not available.
-
getWMSOnlineResourceResolver
Returns theILcdWMSOnlineResourceResolver
that is used to retrieve the paths (typically URLs) to online resources defined by the WMS specification.- Returns:
- the
ILcdWMSOnlineResourceResolver
that is used to retrieve the paths (typically URLs) to online resources defined by the WMS specification.
-