Interface FlowableMultiFunctionDelegate
- All Superinterfaces:
FlowableFunctionDelegate
- All Known Implementing Classes:
CollectionsFunctionDelegate
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptiondefault Method
Returns the method that is invoked by JUEL.functionMethod
(String prefix, String localName) default String
The name of the method when used in an expression, like the second part of ${prefix:method()}.All the names of the method when used in an expression, like the second part of ${prefix:method()}.Methods inherited from interface org.flowable.common.engine.api.delegate.FlowableFunctionDelegate
prefix, prefixes
-
Method Details
-
localName
Description copied from interface:FlowableFunctionDelegate
The name of the method when used in an expression, like the second part of ${prefix:method()}. Will be used to match the text of the expression to the actualFlowableFunctionDelegate
instance.- Specified by:
localName
in interfaceFlowableFunctionDelegate
-
localNames
Collection<String> localNames()Description copied from interface:FlowableFunctionDelegate
All the names of the method when used in an expression, like the second part of ${prefix:method()}. It allows one method to cover multiple local names. e.g.${prefix:method()}
or${prefix:alternativeMethod()}
. Will be used to match the text of the expression to the actualFlowableFunctionDelegate
instance.- Specified by:
localNames
in interfaceFlowableFunctionDelegate
-
functionMethod
Description copied from interface:FlowableFunctionDelegate
Returns the method that is invoked by JUEL.- Specified by:
functionMethod
in interfaceFlowableFunctionDelegate
-
functionMethod
- Specified by:
functionMethod
in interfaceFlowableFunctionDelegate
- Throws:
NoSuchMethodException
-