Uses of Class
org.forgerock.openig.el.LeftValueExpression
Package
Description
Integrates with the Java Enterprise Edition Unified Expression Language API.
Filters the requests and/or responses of HTTP.
OAuth 2.0 Client filter implementation.
Provides SQL and JDBC support.
Miscellaneous utility classes.
-
Uses of LeftValueExpression in org.forgerock.openig.el
Modifier and TypeMethodDescriptionstatic <T> LeftValueExpression<T>
Factory method to create a LeftValueExpression. -
Uses of LeftValueExpression in org.forgerock.openig.filter
Modifier and TypeMethodDescriptionAssignmentFilter.addRequestBinding
(Expression<Boolean> condition, LeftValueExpression<?> target, Expression<?> value) Registers a conditional binding on the request flow.AssignmentFilter.addRequestBinding
(LeftValueExpression<?> target) Registers an unconditional (always executed) binding on the request flow.AssignmentFilter.addRequestBinding
(LeftValueExpression<?> target, Expression<?> value) Registers an unconditional (always executed) binding on the request flow.AssignmentFilter.addResponseBinding
(Expression<Boolean> condition, LeftValueExpression<?> target, Expression<?> value) Registers a conditional binding on the response flow.AssignmentFilter.addResponseBinding
(LeftValueExpression<?> target) Registers an unconditional (always executed) binding on the response flow.AssignmentFilter.addResponseBinding
(LeftValueExpression<?> target, Expression<?> value) Registers an unconditional (always executed) binding on the response flow.ModifierConstructorDescriptionEntityExtractFilter
(MessageType type, LeftValueExpression<?> target) Builds an EntityExtractFilter that will act either onMessageType.REQUEST
orMessageType.RESPONSE
flow, extracting patterns into the giventarget
Expression
.EntityExtractFilter
(MessageType type, LeftValueExpression<?> target, Charset charset) Builds an EntityExtractFilter that will act either onMessageType.REQUEST
orMessageType.RESPONSE
flow, extracting patterns into the giventarget
Expression
.FileAttributesFilter
(SeparatedValuesFile file, String key, Expression<String> value, LeftValueExpression<Map> target) Builds a new FileAttributesFilter extracting values from the given separated values file. -
Uses of LeftValueExpression in org.forgerock.openig.filter.oauth2.client
Modifier and TypeMethodDescriptionOAuth2ClientFilter.setTarget
(LeftValueExpression<?> target) Sets the expression which will be used for storing authorization information in the context. -
Uses of LeftValueExpression in org.forgerock.openig.sql
ModifierConstructorDescriptionSqlAttributesFilter
(DataSource dataSource, LeftValueExpression<Map> target, String preparedStatement) Builds a new SqlAttributesFilter that will execute the given SQL statement on the givenDataSource
, placing the results in aMap
in the specified target. -
Uses of LeftValueExpression in org.forgerock.openig.util
Modifier and TypeMethodDescriptionstatic <T> Function<JsonValue,
LeftValueExpression<T>, JsonValueException> JsonValues.leftValueExpression
(Class<T> type) Returns a function for transforming JsonValues to left-value expressions.