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
ManagedFunctionInvocation
implementation.- 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.Object
getArgument()
Obtains the argument to invoke theManagedFunction
.java.lang.String
getFunctionName()
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:ManagedFunctionReference
Obtains the name of theManagedFunction
.- Specified by:
getFunctionName
in interfaceManagedFunctionReference
- Returns:
- Name of the
ManagedFunction
.
-
getArgument
public java.lang.Object getArgument()
Description copied from interface:ManagedFunctionInvocation
Obtains the argument to invoke theManagedFunction
.- Specified by:
getArgument
in interfaceManagedFunctionInvocation
- Returns:
- Argument to invoke the
ManagedFunction
.
-
-