Package com.luciad.ogc.common
Interface ILcdInitializationConfig
- All Known Implementing Classes:
TLcdServletConfigWrapper
public interface ILcdInitializationConfig
An interface for a named parameter list, used to supply initialization
parameters to the command dispatcher factory when the servlet is loaded.
-
Method Summary
Modifier and TypeMethodDescriptiongetParameter
(String aParameterName) Returns the value of the parameter with the given name.default String
getParameter
(String aParameter, String aDefault) Returns the value of the parameter with the given name, falling back on the given default value.Returns an enumeration of all available parameter names.Returns a context configuration object.
-
Method Details
-
getParameter
Returns the value of the parameter with the given name.- Returns:
- the value of the parameter with the given name, or
null
if the parameter does not exist.
-
getParameter
Returns the value of the parameter with the given name, falling back on the given default value.- Parameters:
aParameter
- the name of the parameteraDefault
- the value to return if the parameter does not exist- Returns:
- the value of the parameter with the given name, or
aDefault
- Since:
- 2017.1
-
getParameterNames
Enumeration getParameterNames()Returns an enumeration of all available parameter names. -
getServletContext
ILcdServletContext getServletContext()Returns a context configuration object.- Returns:
- a context configuration object.
- Since:
- 2017.0
-