Interface InputManagedObjectConfiguration<O extends java.lang.Enum<O>>
-
- All Known Implementing Classes:
DependencyMappingBuilderImpl
public interface InputManagedObjectConfiguration<O extends java.lang.Enum<O>>
Configuration of aManagedObject
input into aProcessState
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBoundManagedObjectName()
Obtains name the inputManagedObject
is bound to within theProcessState
.ManagedObjectDependencyConfiguration<O>[]
getDependencyConfiguration()
Obtains the listing ofManagedObjectDependencyConfiguration
instances.ManagedObjectGovernanceConfiguration[]
getGovernanceConfiguration()
Obtains the listing ofManagedObjectGovernanceConfiguration
instances.AdministrationConfiguration<?,?,?>[]
getPreLoadAdministration()
Obtains the listing of theAdministration
to be done before theManagedObject
is loaded.ThreadLocalConfiguration
getThreadLocalConfiguration()
Obtains theThreadLocalConfiguration
.
-
-
-
Method Detail
-
getBoundManagedObjectName
java.lang.String getBoundManagedObjectName()
Obtains name the inputManagedObject
is bound to within theProcessState
.- Returns:
- Name the input
ManagedObject
is bound to within theProcessState
.
-
getDependencyConfiguration
ManagedObjectDependencyConfiguration<O>[] getDependencyConfiguration()
Obtains the listing ofManagedObjectDependencyConfiguration
instances.- Returns:
ManagedObjectDependencyConfiguration
instances.
-
getGovernanceConfiguration
ManagedObjectGovernanceConfiguration[] getGovernanceConfiguration()
Obtains the listing ofManagedObjectGovernanceConfiguration
instances.- Returns:
ManagedObjectGovernanceConfiguration
instances.
-
getPreLoadAdministration
AdministrationConfiguration<?,?,?>[] getPreLoadAdministration()
Obtains the listing of theAdministration
to be done before theManagedObject
is loaded.- Returns:
- Listing of the
Administration
to be done before theManagedObject
is loaded.
-
getThreadLocalConfiguration
ThreadLocalConfiguration getThreadLocalConfiguration()
Obtains theThreadLocalConfiguration
.- Returns:
ThreadLocalConfiguration
ornull
if not bound toThread
.
-
-