Interface ElContextFactory

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addCustomFunction​(String name, Method method)
      Add a custom function which can be used by the context.
      javax.el.ELContext createContext​(javax.el.ExpressionFactory expressionFactory, org.camunda.bpm.engine.variable.context.VariableContext variableContext)
      Create a ELContext for the given ExpressionFactory and VariableContext.
    • Method Detail

      • createContext

        javax.el.ELContext createContext​(javax.el.ExpressionFactory expressionFactory,
                                         org.camunda.bpm.engine.variable.context.VariableContext variableContext)
        Create a ELContext for the given ExpressionFactory and VariableContext.
        Parameters:
        expressionFactory - the ExpressionFactory to use
        variableContext - the VariableContext to use
        Returns:
        the ELContext instance
      • addCustomFunction

        void addCustomFunction​(String name,
                               Method method)
        Add a custom function which can be used by the context.
        Parameters:
        name - the name of the function
        method - the method reference of the function