Package jakarta.faces.event
Class ScopeContext
- java.lang.Object
-
- jakarta.faces.event.ScopeContext
-
public class ScopeContext extends Object
A structure that contains the name of the scope and the scope itself exposed as a
Map<String, Object>
.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description ScopeContext(String scopeName, Map<String,Object> scope)
Construct this structure with the supplied arguments.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getScope()
Return the scope itself, exposed as aMap
.String
getScopeName()
Return the name of this custom scope.
-