Uses of Class
org.forgerock.openig.el.ExpressionException
-
Packages that use ExpressionException Package Description org.forgerock.openig.el Integrates with the Java Enterprise Edition Unified Expression Language API.org.forgerock.openig.filter Filters the requests and/or responses of HTTP. -
-
Uses of ExpressionException in org.forgerock.openig.el
Methods in org.forgerock.openig.el that throw ExpressionException Modifier and Type Method Description static Object
Expressions. from(Object value)
Compile to expression an Object that may contain some String that needs to be evaluated.static Expression<Object>
Expressions. from(String value)
Convert a String to a compiled expression.static List<Object>
Expressions. from(List<Object> list)
Compile as expressions what can be compiled in a list.static Map<String,Object>
Expressions. from(Map<String,Object> map)
Compile a map that may contain some values that needs to be transformed as expression.static <T> Expression<T>
Expression. valueOf(String expression, Class<T> expectedType)
Factory method to create an Expression.static <T> Expression<T>
Expression. valueOf(String expression, Class<T> expectedType, Bindings initialBindings)
Factory method to create an Expression.static <T> LeftValueExpression<T>
LeftValueExpression. valueOf(String expression, Class<T> expectedType)
Factory method to create a LeftValueExpression.Constructors in org.forgerock.openig.el that throw ExpressionException Constructor Description Expression(String expression, Class<T> expectedType, Bindings initialBindings)
Constructs an expression for later evaluation. -
Uses of ExpressionException in org.forgerock.openig.filter
Constructors in org.forgerock.openig.filter that throw ExpressionException Constructor Description JwtBuilderFilter(JsonValue template, JwtFactory jwtFactory)
Creates a newJwtBuilderFilter
which will create a JWT based on the given JSON template and place it into the context JwtBuilderContext.
-