Uses of Class
org.forgerock.openig.el.LeftValueExpression
-
Packages that use LeftValueExpression 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.org.forgerock.openig.filter.oauth2.client OAuth 2.0 Client filter implementation.org.forgerock.openig.sql Provides SQL and JDBC support.org.forgerock.openig.util Miscellaneous utility classes. -
-
Uses of LeftValueExpression in org.forgerock.openig.el
Methods in org.forgerock.openig.el that return LeftValueExpression Modifier and Type Method Description static <T> LeftValueExpression<T>LeftValueExpression. valueOf(String expression, Class<T> expectedType)Factory method to create a LeftValueExpression. -
Uses of LeftValueExpression in org.forgerock.openig.filter
Methods in org.forgerock.openig.filter with parameters of type LeftValueExpression Modifier and Type Method Description AssignmentFilterAssignmentFilter. addRequestBinding(Expression<Boolean> condition, LeftValueExpression<?> target, Expression<?> value)Registers a conditional binding on the request flow.AssignmentFilterAssignmentFilter. addRequestBinding(LeftValueExpression<?> target)Registers an unconditional (always executed) binding on the request flow.AssignmentFilterAssignmentFilter. addRequestBinding(LeftValueExpression<?> target, Expression<?> value)Registers an unconditional (always executed) binding on the request flow.AssignmentFilterAssignmentFilter. addResponseBinding(Expression<Boolean> condition, LeftValueExpression<?> target, Expression<?> value)Registers a conditional binding on the response flow.AssignmentFilterAssignmentFilter. addResponseBinding(LeftValueExpression<?> target)Registers an unconditional (always executed) binding on the response flow.AssignmentFilterAssignmentFilter. addResponseBinding(LeftValueExpression<?> target, Expression<?> value)Registers an unconditional (always executed) binding on the response flow.Constructors in org.forgerock.openig.filter with parameters of type LeftValueExpression Constructor Description EntityExtractFilter(MessageType type, LeftValueExpression<?> target)Builds an EntityExtractFilter that will act either onMessageType.REQUESTorMessageType.RESPONSEflow, extracting patterns into the giventargetExpression.EntityExtractFilter(MessageType type, LeftValueExpression<?> target, Charset charset)Builds an EntityExtractFilter that will act either onMessageType.REQUESTorMessageType.RESPONSEflow, extracting patterns into the giventargetExpression.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
Methods in org.forgerock.openig.filter.oauth2.client with parameters of type LeftValueExpression Modifier and Type Method Description OAuth2ClientFilterOAuth2ClientFilter. 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
Constructors in org.forgerock.openig.sql with parameters of type LeftValueExpression Constructor Description SqlAttributesFilter(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 aMapin the specified target. -
Uses of LeftValueExpression in org.forgerock.openig.util
Methods in org.forgerock.openig.util that return types with arguments of type LeftValueExpression Modifier and Type Method Description static <T> Function<JsonValue,LeftValueExpression<T>,JsonValueException>JsonValues. leftValueExpression(Class<T> type)Returns a function for transforming JsonValues to left-value expressions.
-