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