Package lumis.portal.businesscontext
Interface IBusinessContextValueProvider
-
- All Known Implementing Classes:
AbstractBusinessContextValueProvider
,ExpressionLanguageContextValueProvider
,FixedValueContextValueProvider
@StableMinor(version="16.1", sinceVersion="7.0") public interface IBusinessContextValueProvider
Provides operations to access the property value.- Since:
- 7.0.0
- Version:
- $Revision: 26156 $ $Date: 2024-01-13 10:26:46 -0300 (Sat, 13 Jan 2024) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
get(HttpServletRequest request)
Gets the property value.void
initialize(java.util.Map<java.lang.String,java.lang.String> parameters)
Initializes the value provider with the given parameters.
-
-
-
Method Detail
-
get
java.lang.String get(HttpServletRequest request)
Gets the property value.- Parameters:
request
- the request to be used to get the value.- Returns:
- the property's value.
- Since:
- 7.0.0
-
initialize
void initialize(java.util.Map<java.lang.String,java.lang.String> parameters)
Initializes the value provider with the given parameters.- Parameters:
parameters
- the parameters.- Since:
- 7.0.0
-
-