Interface EvaluationContextFactory

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.springframework.expression.EvaluationContext createContext()
      Creates evaluation context.
      org.springframework.expression.EvaluationContext createContext​(java.lang.Object rootObject, java.util.Map<java.lang.String,​java.lang.Object> contextParameters)
      Creates evaluation context according to the given parameters.
      org.springframework.expression.EvaluationContext createContext​(java.util.Map<java.lang.String,​java.lang.Object> contextParameters)
      Creates evaluation context according to the given parameters.
    • Method Detail

      • createContext

        org.springframework.expression.EvaluationContext createContext()
        Creates evaluation context.
        Returns:
        new instance if evaluation context
      • createContext

        org.springframework.expression.EvaluationContext createContext​(java.util.Map<java.lang.String,​java.lang.Object> contextParameters)
        Creates evaluation context according to the given parameters.
        Parameters:
        contextParameters - parameters to be passed to EvaluationContext.setVariable(String, Object)
        Returns:
        new instance of evaluation context
      • createContext

        org.springframework.expression.EvaluationContext createContext​(java.lang.Object rootObject,
                                                                       java.util.Map<java.lang.String,​java.lang.Object> contextParameters)
        Creates evaluation context according to the given parameters.
        Parameters:
        rootObject - set as root object of EvaluationContext
        contextParameters - parameters to be passed to EvaluationContext.setVariable(String, Object)
        Returns:
        new instance of evaluation context