Interface ElContextFactory
- All Known Implementing Classes:
FeelElContextFactory
public interface ElContextFactory
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCustomFunction
(String name, Method method) Add a custom function which can be used by the context.org.camunda.bpm.impl.juel.jakarta.el.ELContext
createContext
(org.camunda.bpm.impl.juel.jakarta.el.ExpressionFactory expressionFactory, VariableContext variableContext)
-
Method Details
-
createContext
org.camunda.bpm.impl.juel.jakarta.el.ELContext createContext(org.camunda.bpm.impl.juel.jakarta.el.ExpressionFactory expressionFactory, VariableContext variableContext) - Parameters:
expressionFactory
- theExpressionFactory
to usevariableContext
- theVariableContext
to use- Returns:
- the
ELContext
instance
-
addCustomFunction
Add a custom function which can be used by the context.- Parameters:
name
- the name of the functionmethod
- the method reference of the function
-