Interface ManagedFunctionInvocation
-
- All Superinterfaces:
ManagedFunctionReference
- All Known Implementing Classes:
ManagedFunctionInvocationImpl
public interface ManagedFunctionInvocation extends ManagedFunctionReference
Provides reference details to invoke aManagedFunction
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Object
getArgument()
Obtains the argument to invoke theManagedFunction
.default java.lang.Class<?>
getArgumentType()
Obtains the type of argument to be passed to the referencedManagedFunction
.-
Methods inherited from interface net.officefloor.frame.internal.configuration.ManagedFunctionReference
getFunctionName
-
-
-
-
Method Detail
-
getArgument
java.lang.Object getArgument()
Obtains the argument to invoke theManagedFunction
.- Returns:
- Argument to invoke the
ManagedFunction
.
-
getArgumentType
default java.lang.Class<?> getArgumentType()
Description copied from interface:ManagedFunctionReference
Obtains the type of argument to be passed to the referencedManagedFunction
.- Specified by:
getArgumentType
in interfaceManagedFunctionReference
- Returns:
- Type of argument to be passed to the referenced
ManagedFunction
.
-
-