Class ParsingElContext
java.lang.Object
org.flowable.common.engine.impl.javax.el.ELContext
org.flowable.common.engine.impl.el.ParsingElContext
Simple implementation of the
ELContext
used during parsings.
Currently this implementation does nothing, but a non-null implementation of the ELContext
interface is required by the ExpressionFactory
when create value- and methodexpressions.- Author:
- Joram Barrez
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the ELResolver associated with this context.Retrieves the FunctionMapper associated with this ELContext.Retrieves the VariableMapper associated with this ELContext.Methods inherited from class org.flowable.common.engine.impl.javax.el.ELContext
getContext, getLocale, isPropertyResolved, putContext, setLocale, setPropertyResolved
-
Field Details
-
functionResolver
-
-
Constructor Details
-
ParsingElContext
-
-
Method Details
-
getELResolver
Description copied from class:ELContext
Retrieves the ELResolver associated with this context. The ELContext maintains a reference to the ELResolver that will be consulted to resolve variables and properties during an expression evaluation. This method retrieves the reference to the resolver. Once an ELContext is constructed, the reference to the ELResolver associated with the context cannot be changed.- Specified by:
getELResolver
in classELContext
- Returns:
- The resolver to be consulted for variable and property resolution during expression evaluation.
-
getFunctionMapper
Description copied from class:ELContext
Retrieves the FunctionMapper associated with this ELContext.- Specified by:
getFunctionMapper
in classELContext
- Returns:
- The function mapper to be consulted for the resolution of EL functions.
-
getVariableMapper
Description copied from class:ELContext
Retrieves the VariableMapper associated with this ELContext.- Specified by:
getVariableMapper
in classELContext
- Returns:
- The variable mapper to be consulted for the resolution of EL variables.
-