Interface FlowableMultiFunctionDelegate
- All Superinterfaces:
FlowableFunctionDelegate
- All Known Implementing Classes:
CollectionsFunctionDelegate
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptiondefault MethodReturns the method that is invoked by JUEL.functionMethod(String prefix, String localName) default StringThe 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:FlowableFunctionDelegateThe 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 actualFlowableFunctionDelegateinstance.- Specified by:
localNamein interfaceFlowableFunctionDelegate
-
localNames
Collection<String> localNames()Description copied from interface:FlowableFunctionDelegateAll 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 actualFlowableFunctionDelegateinstance.- Specified by:
localNamesin interfaceFlowableFunctionDelegate
-
functionMethod
Description copied from interface:FlowableFunctionDelegateReturns the method that is invoked by JUEL.- Specified by:
functionMethodin interfaceFlowableFunctionDelegate
-
functionMethod
- Specified by:
functionMethodin interfaceFlowableFunctionDelegate- Throws:
NoSuchMethodException
-