Class AbstractFlowableFunctionDelegate
- java.lang.Object
-
- org.flowable.common.engine.impl.el.AbstractFlowableFunctionDelegate
-
- All Implemented Interfaces:
FlowableFunctionDelegate
public abstract class AbstractFlowableFunctionDelegate extends Object implements FlowableFunctionDelegate
Abstract class that can be used as a base class for pluggable functions that can be used in the EL expressions- Author:
- Tijs Rademakers
-
-
Constructor Summary
Constructors Constructor Description AbstractFlowableFunctionDelegate()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Class<?>functionClass()The class, typically containing static methods.protected MethodgetFourObjectParameterMethod()protected MethodgetFourObjectParameterMethod(String methodName)protected MethodgetNoParameterMethod()protected MethodgetNoParameterMethod(String methodName)protected MethodgetSingleObjectParameterMethod()protected MethodgetSingleObjectParameterMethod(String methodName)protected MethodgetThreeObjectParameterMethod()protected MethodgetThreeObjectParameterMethod(String methodName)protected MethodgetTwoObjectParameterMethod()protected MethodgetTwoObjectParameterMethod(String methodName)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.api.delegate.FlowableFunctionDelegate
functionMethod, localName, localNames, prefix, prefixes
-
-
-
-
Method Detail
-
functionClass
public abstract Class<?> functionClass()
The class, typically containing static methods. IfFlowableFunctionDelegate.functionMethod()is provided, this method does not need to return a value.
-
getNoParameterMethod
protected Method getNoParameterMethod()
-
getSingleObjectParameterMethod
protected Method getSingleObjectParameterMethod()
-
getTwoObjectParameterMethod
protected Method getTwoObjectParameterMethod()
-
getThreeObjectParameterMethod
protected Method getThreeObjectParameterMethod()
-
getFourObjectParameterMethod
protected Method getFourObjectParameterMethod()
-
-