Package net.shibboleth.ext.spring.util
Class SpringExpressionBiFunction<T,U,V>
- java.lang.Object
-
- net.shibboleth.ext.spring.util.AbstractSpringExpressionEvaluatorEx
-
- net.shibboleth.ext.spring.util.SpringExpressionBiFunction<T,U,V>
-
- Type Parameters:
T- first input typeU- second input typeV- return type
- All Implemented Interfaces:
BiFunction<T,U,V>
public class SpringExpressionBiFunction<T,U,V> extends AbstractSpringExpressionEvaluatorEx implements BiFunction<T,U,V>
Predicate whose condition is defined by an Spring EL expression.- Since:
- 6.1.0
-
-
Constructor Summary
Constructors Constructor Description SpringExpressionBiFunction(String expression)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vapply(T first, U second)Pair<Class<T>,Class<U>>getInputTypes()Get the input type to be enforced.protected voidprepareContext(EvaluationContext context, Object... input)Pre-process the script context before execution.voidsetInputTypes(Pair<Class<T>,Class<U>> types)Set the input types to be enforced.voidsetOutputType(Class<?> type)Set the output type to be enforced.voidsetReturnOnError(Object value)Set value to return if an error occurs.-
Methods inherited from class net.shibboleth.ext.spring.util.AbstractSpringExpressionEvaluatorEx
evaluate, getCustomObject, getOutputType, getReturnOnError, setCustomObject, setHideExceptions
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
-
-
-
Constructor Detail
-
SpringExpressionBiFunction
public SpringExpressionBiFunction(@Nonnull @NotEmpty @ParameterName(name="expression") String expression)
Constructor.- Parameters:
expression- the expression to evaluate
-
-
Method Detail
-
getInputTypes
@Nullable public Pair<Class<T>,Class<U>> getInputTypes()
Get the input type to be enforced.- Returns:
- input type
-
setInputTypes
public void setInputTypes(@Nullable Pair<Class<T>,Class<U>> types)Set the input types to be enforced.- Parameters:
types- the input types
-
setOutputType
public void setOutputType(@Nullable Class<?> type)Set the output type to be enforced.- Overrides:
setOutputTypein classAbstractSpringExpressionEvaluatorEx- Parameters:
type- output type
-
setReturnOnError
public void setReturnOnError(@Nullable Object value)Set value to return if an error occurs.- Overrides:
setReturnOnErrorin classAbstractSpringExpressionEvaluatorEx- Parameters:
value- value to return
-
apply
@Nullable public V apply(@Nullable T first, @Nullable U second)
- Specified by:
applyin interfaceBiFunction<T,U,V>
-
prepareContext
protected void prepareContext(@Nonnull EvaluationContext context, @Nullable Object... input)Pre-process the script context before execution.- Specified by:
prepareContextin classAbstractSpringExpressionEvaluatorEx- Parameters:
context- the expression contextinput- the inputs
-
-