Interface ManagedObjectLoader
-
- All Known Implementing Classes:
ManagedObjectLoaderImpl
public interface ManagedObjectLoader
Loads theManagedObjectType
from theManagedObjectSource
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>>
ManagedObjectType<D>loadManagedObjectType(java.lang.Class<MS> managedObjectSourceClass, PropertyList propertyList)
Loads and returns theManagedObjectType
for theManagedObjectSource
.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>>
ManagedObjectType<D>loadManagedObjectType(ManagedObjectSource<D,F> managedObjectSource, PropertyList propertyList)
Loads and returns theManagedObjectType
for theManagedObjectSource
.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>>
OfficeFloorManagedObjectSourceTypeloadOfficeFloorManagedObjectSourceType(java.lang.String managedObjectSourceName, java.lang.Class<MS> managedObjectSourceClass, PropertyList propertyList)
Loads and returns theOfficeFloorManagedObjectSourceType
for theManagedObjectSource
.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>>
OfficeFloorManagedObjectSourceTypeloadOfficeFloorManagedObjectSourceType(java.lang.String managedObjectSourceName, MS managedObjectSource, PropertyList propertyList)
Loads and returns theOfficeFloorManagedObjectSourceType
for theManagedObjectSource
.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>>
PropertyListloadSpecification(java.lang.Class<MS> managedObjectSourceClass)
Loads and returns thePropertyList
from theManagedObjectSourceSpecification
for theManagedObjectSource
.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>>
PropertyListloadSpecification(ManagedObjectSource<D,F> managedObjectSource)
Loads and returns thePropertyList
from theManagedObjectSourceSpecification
for theManagedObjectSource
.
-
-
-
Method Detail
-
loadSpecification
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>> PropertyList loadSpecification(java.lang.Class<MS> managedObjectSourceClass)
Loads and returns thePropertyList
from theManagedObjectSourceSpecification
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.MS
-ManagedObjectSource
type.- Parameters:
managedObjectSourceClass
-ManagedObjectSource
class.- Returns:
PropertyList
of theManagedObjectSourceProperty
instances of theManagedObjectSourceSpecification
ornull
if issue, which is reported to theCompilerIssues
.
-
loadSpecification
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>> PropertyList loadSpecification(ManagedObjectSource<D,F> managedObjectSource)
Loads and returns thePropertyList
from theManagedObjectSourceSpecification
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.- Parameters:
managedObjectSource
-ManagedObjectSource
instance.- Returns:
PropertyList
of theManagedObjectSourceProperty
instances of theManagedObjectSourceSpecification
ornull
if issue, which is reported to theCompilerIssues
.
-
loadManagedObjectType
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>> ManagedObjectType<D> loadManagedObjectType(java.lang.Class<MS> managedObjectSourceClass, PropertyList propertyList)
Loads and returns theManagedObjectType
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.MS
-ManagedObjectSource
type.- Parameters:
managedObjectSourceClass
- Class of theManagedObjectSource
.propertyList
-PropertyList
containing the properties to source theManagedObjectType
.- Returns:
ManagedObjectType
ornull
if issues, which are reported to theCompilerIssues
.
-
loadManagedObjectType
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>> ManagedObjectType<D> loadManagedObjectType(ManagedObjectSource<D,F> managedObjectSource, PropertyList propertyList)
Loads and returns theManagedObjectType
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.- Parameters:
managedObjectSource
-ManagedObjectSource
instance to use.propertyList
-PropertyList
containing the properties to source theManagedObjectType
.- Returns:
ManagedObjectType
ornull
if issues, which are reported to theCompilerIssues
.
-
loadOfficeFloorManagedObjectSourceType
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>> OfficeFloorManagedObjectSourceType loadOfficeFloorManagedObjectSourceType(java.lang.String managedObjectSourceName, java.lang.Class<MS> managedObjectSourceClass, PropertyList propertyList)
Loads and returns theOfficeFloorManagedObjectSourceType
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.MS
-ManagedObjectSource
type.- Parameters:
managedObjectSourceName
- Name of theManagedObjectSource
.managedObjectSourceClass
- Class of theManagedObjectSource
.propertyList
-PropertyList
containing the properties to source theOfficeFloorManagedObjectSourceType
.- Returns:
OfficeFloorManagedObjectSourceType
ornull
if issues, which are reported to theCompilerIssues
.
-
loadOfficeFloorManagedObjectSourceType
<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>,MS extends ManagedObjectSource<D,F>> OfficeFloorManagedObjectSourceType loadOfficeFloorManagedObjectSourceType(java.lang.String managedObjectSourceName, MS managedObjectSource, PropertyList propertyList)
Loads and returns theOfficeFloorManagedObjectSourceType
for theManagedObjectSource
.- Type Parameters:
D
- Dependency key type.F
- Flow key type.MS
-ManagedObjectSource
type.- Parameters:
managedObjectSourceName
- Name of theManagedObjectSource
.managedObjectSource
-ManagedObjectSource
instances to use.propertyList
-PropertyList
containing the properties to source theOfficeFloorManagedObjectSourceType
.- Returns:
OfficeFloorManagedObjectSourceType
ornull
if issues, which are reported to theCompilerIssues
.
-
-