Interface ManagedObjectFunctionEnhancerContext
-
public interface ManagedObjectFunctionEnhancerContext
Context for theManagedObjectFunctionEnhancer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectFunctionDependency[]
getFunctionDependencies()
Obtains theManagedObjectFunctionDependency
instances for theManagedFunction
.java.lang.String
getFunctionName()
Obtains the name of theManagedFunction
.ManagedFunctionFactory<?,?>
getManagedFunctionFactory()
Obtains theManagedFunctionFactory
.java.lang.String
getResponsibleTeam()
Obtains the name of the responsibleTeam
.boolean
isUsingManagedObject()
Indicates if using theManagedObject
from theManagedObjectSource
.void
setResponsibleTeam(java.lang.String teamName)
Specifies the responsibleTeam
.
-
-
-
Method Detail
-
getFunctionName
java.lang.String getFunctionName()
Obtains the name of theManagedFunction
.- Returns:
- Name of the
ManagedFunction
.
-
getManagedFunctionFactory
ManagedFunctionFactory<?,?> getManagedFunctionFactory()
Obtains theManagedFunctionFactory
.- Returns:
ManagedFunctionFactory
.
-
isUsingManagedObject
boolean isUsingManagedObject()
Indicates if using theManagedObject
from theManagedObjectSource
.- Returns:
true
if using theManagedObject
from theManagedObjectSource
.
-
getFunctionDependencies
ManagedObjectFunctionDependency[] getFunctionDependencies()
Obtains theManagedObjectFunctionDependency
instances for theManagedFunction
.- Returns:
ManagedObjectFunctionDependency
instances for theManagedFunction
.
-
getResponsibleTeam
java.lang.String getResponsibleTeam()
Obtains the name of the responsibleTeam
.
-
-