Class ImplicitFlowVariableELResolver

java.lang.Object
jakarta.el.ELResolver
org.springframework.webflow.expression.el.ImplicitFlowVariableELResolver

public class ImplicitFlowVariableELResolver extends jakarta.el.ELResolver
Resolves "implicit" or well-known flow variables; for example "flowScope" in an expression like #{flowScope.foo}. The list of implicit flow variables consists of:
 requestParameters
 requestScope
 flashScope
 viewScope
 flowScope
 conversationScope
 messageContext
 externalContext
 flowExecutionContext
 flowExecutionUrl
 currentUser
 currentEvent
 
Author:
Keith Donald, Jeremy Grelle
  • Constructor Details

    • ImplicitFlowVariableELResolver

      public ImplicitFlowVariableELResolver()
    • ImplicitFlowVariableELResolver

      public ImplicitFlowVariableELResolver(RequestContext requestContext)
  • Method Details

    • getCommonPropertyType

      public Class<?> getCommonPropertyType(jakarta.el.ELContext context, Object base)
      Specified by:
      getCommonPropertyType in class jakarta.el.ELResolver
    • getFeatureDescriptors

      public Iterator<FeatureDescriptor> getFeatureDescriptors(jakarta.el.ELContext context, Object base)
      Overrides:
      getFeatureDescriptors in class jakarta.el.ELResolver
    • getType

      public Class<?> getType(jakarta.el.ELContext context, Object base, Object property)
      Specified by:
      getType in class jakarta.el.ELResolver
    • getValue

      public Object getValue(jakarta.el.ELContext context, Object base, Object property)
      Specified by:
      getValue in class jakarta.el.ELResolver
    • isReadOnly

      public boolean isReadOnly(jakarta.el.ELContext context, Object base, Object property)
      Specified by:
      isReadOnly in class jakarta.el.ELResolver
    • setValue

      public void setValue(jakarta.el.ELContext context, Object base, Object property, Object value)
      Specified by:
      setValue in class jakarta.el.ELResolver
    • getRequestContext

      protected RequestContext getRequestContext()