Interface ExecutionManagedFunction
-
public interface ExecutionManagedFunctionManagedFunctionavailable to theExecutionExplorer.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionManagedFunctiongetManagedFunction(ManagedFunctionEscalationType escalationType)Obtains theExecutionManagedFunctionfor theManagedFunctionEscalationType.ExecutionManagedFunctiongetManagedFunction(ManagedFunctionFlowType<?> flowType)Obtains theExecutionManagedFunctionfor theManagedFunctionFlowType.java.lang.StringgetManagedFunctionName()Obtains the name of theManagedFunction.ManagedFunctionType<?,?>getManagedFunctionType()Obtains theManagedFunctionTypefor theManagedFunction.ExecutionManagedObjectgetManagedObject(ManagedFunctionObjectType<?> objectType)Obtains theExecutionManagedObjectfor theManagedFunctionObjectType.ExecutionManagedFunctiongetNextManagedFunction()Obtains the nextExecutionManagedFunction.
-
-
-
Method Detail
-
getManagedFunctionName
java.lang.String getManagedFunctionName()
Obtains the name of theManagedFunction.- Returns:
- Name of the
ManagedFunction.
-
getManagedFunctionType
ManagedFunctionType<?,?> getManagedFunctionType()
Obtains theManagedFunctionTypefor theManagedFunction.- Returns:
ManagedFunctionTypefor theManagedFunction.
-
getNextManagedFunction
ExecutionManagedFunction getNextManagedFunction()
Obtains the nextExecutionManagedFunction.- Returns:
ExecutionManagedFunctionfor the nextManagedFunction. May benullif no nextManagedFunction.
-
getManagedFunction
ExecutionManagedFunction getManagedFunction(ManagedFunctionFlowType<?> flowType)
Obtains theExecutionManagedFunctionfor theManagedFunctionFlowType.- Parameters:
flowType-ManagedFunctionFlowType.- Returns:
ExecutionManagedFunctionfor theManagedFunctionFlowType.
-
getManagedFunction
ExecutionManagedFunction getManagedFunction(ManagedFunctionEscalationType escalationType)
Obtains theExecutionManagedFunctionfor theManagedFunctionEscalationType.- Parameters:
escalationType-ManagedFunctionEscalationType.- Returns:
ExecutionManagedFunctionfor theManagedFunctionEscalationType. May benullif not handled by the application (as handled byManagedObjectSource/OfficeFloor).
-
getManagedObject
ExecutionManagedObject getManagedObject(ManagedFunctionObjectType<?> objectType)
Obtains theExecutionManagedObjectfor theManagedFunctionObjectType.- Parameters:
objectType-ManagedFunctionObjectType.- Returns:
ExecutionManagedObjectfor theManagedFunctionObjectType.
-
-