Class ReadonlyContext
java.lang.Object
edu.internet2.middleware.grouperClientExt.org.apache.commons.jexl2.ReadonlyContext
- All Implemented Interfaces:
JexlContext
A readonly context wrapper.
- Since:
- 2.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of a variable.boolean
Checks whether a variable is defined in this context.void
Will throw an UnsupportedOperationException when called; the JexlEngine deals with it appropriately.
-
Constructor Details
-
ReadonlyContext
Creates a new readonly context.- Parameters:
context
- the wrapped context
-
-
Method Details
-
get
Gets the value of a variable.- Specified by:
get
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- the value
-
set
Will throw an UnsupportedOperationException when called; the JexlEngine deals with it appropriately.- Specified by:
set
in interfaceJexlContext
- Parameters:
name
- the unused variable namevalue
- the unused variable value
-
has
Checks whether a variable is defined in this context.A variable may be defined with a null value; this method checks whether the value is null or if the variable is undefined.
- Specified by:
has
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- true if it exists, false otherwise
-