Interface ManagedFunctionReference
-
- All Known Subinterfaces:
ManagedFunctionInvocation
- All Known Implementing Classes:
ManagedFunctionInvocationImpl
,ManagedFunctionReferenceImpl
public interface ManagedFunctionReference
Reference to aManagedFunction
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>
getArgumentType()
Obtains the type of argument to be passed to the referencedManagedFunction
.java.lang.String
getFunctionName()
Obtains the name of theManagedFunction
.
-
-
-
Method Detail
-
getFunctionName
java.lang.String getFunctionName()
Obtains the name of theManagedFunction
.- Returns:
- Name of the
ManagedFunction
.
-
getArgumentType
java.lang.Class<?> getArgumentType()
Obtains the type of argument to be passed to the referencedManagedFunction
.- Returns:
- Type of argument to be passed to the referenced
ManagedFunction
.
-
-