Class ManagedFunctionReferenceImpl
- java.lang.Object
-
- net.officefloor.frame.impl.construct.managedfunction.ManagedFunctionReferenceImpl
-
- All Implemented Interfaces:
ManagedFunctionReference
public class ManagedFunctionReferenceImpl extends java.lang.Object implements ManagedFunctionReference
ManagedFunctionReference
implementation.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ManagedFunctionReferenceImpl(java.lang.String functionName, java.lang.Class<?> argumentType)
Initiate.
-
Method Summary
All Methods Instance Methods Concrete 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
.
-
-
-
Constructor Detail
-
ManagedFunctionReferenceImpl
public ManagedFunctionReferenceImpl(java.lang.String functionName, java.lang.Class<?> argumentType)
Initiate.- Parameters:
functionName
- Name of theManagedFunction
.argumentType
- Type of argument to be passed to the referencedManagedFunction
.
-
-
Method Detail
-
getFunctionName
public java.lang.String getFunctionName()
Description copied from interface:ManagedFunctionReference
Obtains the name of theManagedFunction
.- Specified by:
getFunctionName
in interfaceManagedFunctionReference
- Returns:
- Name of the
ManagedFunction
.
-
getArgumentType
public 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
.
-
-