Interface ExecutionManagedObject
-
public interface ExecutionManagedObject
ManagedObject
available to theExecutionExplorer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionManagedFunction
getManagedFunction(ManagedObjectFlowType<?> flowType)
Obtains theExecutionManagedFunction
for theManagedObjectFlowType
.ExecutionManagedObject
getManagedObject(ManagedObjectDependencyType<?> dependencyType)
Obtains theExecutionManagedObject
for theManagedObjectDependencyType
.java.lang.String
getManagedObjectName()
Obtains the name of theManagedObject
.ManagedObjectType<?>
getManagedObjectType()
Obtains theManagedObjectType
for theManagedObject
.
-
-
-
Method Detail
-
getManagedObjectName
java.lang.String getManagedObjectName()
Obtains the name of theManagedObject
.- Returns:
- Name of the
ManagedObject
.
-
getManagedObjectType
ManagedObjectType<?> getManagedObjectType()
Obtains theManagedObjectType
for theManagedObject
.- Returns:
ManagedObjectType
for theManagedObject
.
-
getManagedObject
ExecutionManagedObject getManagedObject(ManagedObjectDependencyType<?> dependencyType)
Obtains theExecutionManagedObject
for theManagedObjectDependencyType
.- Parameters:
dependencyType
-ManagedObjectDependencyType
.- Returns:
ExecutionManagedObject
for theManagedObjectDependencyType
.
-
getManagedFunction
ExecutionManagedFunction getManagedFunction(ManagedObjectFlowType<?> flowType)
Obtains theExecutionManagedFunction
for theManagedObjectFlowType
.- Parameters:
flowType
-ManagedObjectFlowType
.- Returns:
ExecutionManagedFunction
for theManagedObjectFlowType
.
-
-