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
ManagedFunctionReferenceimplementation.- 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.StringgetFunctionName()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:ManagedFunctionReferenceObtains the name of theManagedFunction.- Specified by:
getFunctionNamein interfaceManagedFunctionReference- Returns:
- Name of the
ManagedFunction.
-
getArgumentType
public java.lang.Class<?> getArgumentType()
Description copied from interface:ManagedFunctionReferenceObtains the type of argument to be passed to the referencedManagedFunction.- Specified by:
getArgumentTypein interfaceManagedFunctionReference- Returns:
- Type of argument to be passed to the referenced
ManagedFunction.
-
-