java.lang.Object
com.sun.faces.util.ScopedRunner
This class helps in letting code run within its own scope. Such scope is defined by specific variables being
available to EL within it. The request scope is used to store the variables.
-
Constructor Summary
ConstructorDescriptionScopedRunner
(FacesContext context) ScopedRunner
(FacesContext context, Map<String, Object> scopedVariables) -
Method Summary
-
Constructor Details
-
ScopedRunner
-
ScopedRunner
-
-
Method Details
-
with
Adds the given variable to this instance. Can be used in a builder-pattern.- Parameters:
key
- the key name of the variablevalue
- the value of the variable- Returns:
- this ScopedRunner, so adding variables and finally calling invoke can be chained.
-
invoke
Invokes the callback within the scope of the variables being given in the constructor.- Parameters:
callback
- The callback.
-