Class ManagedFunctionInvocationImpl
- java.lang.Object
-
- net.officefloor.frame.impl.construct.managedfunction.ManagedFunctionInvocationImpl
-
- All Implemented Interfaces:
ManagedFunctionInvocation,ManagedFunctionReference
public class ManagedFunctionInvocationImpl extends java.lang.Object implements ManagedFunctionInvocation
ManagedFunctionInvocationimplementation.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ManagedFunctionInvocationImpl(java.lang.String functionName, java.lang.Object argument)Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetArgument()Obtains the argument to invoke theManagedFunction.java.lang.StringgetFunctionName()Obtains the name of theManagedFunction.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.frame.internal.configuration.ManagedFunctionInvocation
getArgumentType
-
-
-
-
Constructor Detail
-
ManagedFunctionInvocationImpl
public ManagedFunctionInvocationImpl(java.lang.String functionName, java.lang.Object argument)Instantiate.- Parameters:
functionName- Name of theManagedFunction.argument- Argument to theManagedFunction. May benull.
-
-
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.
-
getArgument
public java.lang.Object getArgument()
Description copied from interface:ManagedFunctionInvocationObtains the argument to invoke theManagedFunction.- Specified by:
getArgumentin interfaceManagedFunctionInvocation- Returns:
- Argument to invoke the
ManagedFunction.
-
-