public class ScopeContext
extends java.lang.Object
A structure that contains the name of the scope and the scope itself exposed as a Map<String,
Object>
.
Constructor and Description |
---|
ScopeContext(java.lang.String scopeName,
java.util.Map<java.lang.String,java.lang.Object> scope)
Construct this structure with the supplied arguments. |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,java.lang.Object> |
getScope()
Return the scope itself, exposed as a |
java.lang.String |
getScopeName()
Return the name of this custom scope. |
public ScopeContext(java.lang.String scopeName, java.util.Map<java.lang.String,java.lang.Object> scope)
Construct this structure with the supplied arguments.
scopeName
- the name of the scopescope
- the scope itselfpublic java.lang.String getScopeName()
Return the name of this custom scope.
public java.util.Map<java.lang.String,java.lang.Object> getScope()
Return the scope itself, exposed as a Map
.
Map