Interface ManagedObjectLoader
-
- All Known Implementing Classes:
ManagedObjectLoaderImpl
public interface ManagedObjectLoaderLoads theManagedObjectTypefrom 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 theManagedObjectTypefor 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 theManagedObjectTypefor 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 theOfficeFloorManagedObjectSourceTypefor 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 theOfficeFloorManagedObjectSourceTypefor 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 thePropertyListfrom theManagedObjectSourceSpecificationfor theManagedObjectSource.<D extends java.lang.Enum<D>,F extends java.lang.Enum<F>>
PropertyListloadSpecification(ManagedObjectSource<D,F> managedObjectSource)Loads and returns thePropertyListfrom theManagedObjectSourceSpecificationfor 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 thePropertyListfrom theManagedObjectSourceSpecificationfor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.MS-ManagedObjectSourcetype.- Parameters:
managedObjectSourceClass-ManagedObjectSourceclass.- Returns:
PropertyListof theManagedObjectSourcePropertyinstances of theManagedObjectSourceSpecificationornullif 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 thePropertyListfrom theManagedObjectSourceSpecificationfor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.- Parameters:
managedObjectSource-ManagedObjectSourceinstance.- Returns:
PropertyListof theManagedObjectSourcePropertyinstances of theManagedObjectSourceSpecificationornullif 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 theManagedObjectTypefor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.MS-ManagedObjectSourcetype.- Parameters:
managedObjectSourceClass- Class of theManagedObjectSource.propertyList-PropertyListcontaining the properties to source theManagedObjectType.- Returns:
ManagedObjectTypeornullif 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 theManagedObjectTypefor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.- Parameters:
managedObjectSource-ManagedObjectSourceinstance to use.propertyList-PropertyListcontaining the properties to source theManagedObjectType.- Returns:
ManagedObjectTypeornullif 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 theOfficeFloorManagedObjectSourceTypefor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.MS-ManagedObjectSourcetype.- Parameters:
managedObjectSourceName- Name of theManagedObjectSource.managedObjectSourceClass- Class of theManagedObjectSource.propertyList-PropertyListcontaining the properties to source theOfficeFloorManagedObjectSourceType.- Returns:
OfficeFloorManagedObjectSourceTypeornullif 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 theOfficeFloorManagedObjectSourceTypefor theManagedObjectSource.- Type Parameters:
D- Dependency key type.F- Flow key type.MS-ManagedObjectSourcetype.- Parameters:
managedObjectSourceName- Name of theManagedObjectSource.managedObjectSource-ManagedObjectSourceinstances to use.propertyList-PropertyListcontaining the properties to source theOfficeFloorManagedObjectSourceType.- Returns:
OfficeFloorManagedObjectSourceTypeornullif issues, which are reported to theCompilerIssues.
-
-