Package net.officefloor.compile.supplier
Interface SuppliedManagedObjectSourceType
-
- All Known Implementing Classes:
SuppliedManagedObjectSourceTypeImpl
public interface SuppliedManagedObjectSourceType
Type definition
of a potentially suppliedManagedObject
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectSource<?,?>
getManagedObjectSource()
Obtains theManagedObjectSource
.java.lang.Class<?>
getObjectType()
Obtains the type ofObject
provided by the suppliedManagedObject
.PropertyList
getPropertyList()
Obtains thePropertyList
to configure theManagedObjectSource
.java.lang.String
getQualifier()
Obtains the possible qualifier for the suppliedManagedObject
.
-
-
-
Method Detail
-
getObjectType
java.lang.Class<?> getObjectType()
Obtains the type ofObject
provided by the suppliedManagedObject
.- Returns:
- Type of
Object
provided by the suppliedManagedObject
.
-
getQualifier
java.lang.String getQualifier()
Obtains the possible qualifier for the suppliedManagedObject
.- Returns:
- Qualifier for the supplied
ManagedObject
. May benull
.
-
getManagedObjectSource
ManagedObjectSource<?,?> getManagedObjectSource()
Obtains theManagedObjectSource
.- Returns:
ManagedObjectSource
.
-
getPropertyList
PropertyList getPropertyList()
Obtains thePropertyList
to configure theManagedObjectSource
.- Returns:
PropertyList
to configure theManagedObjectSource
.
-
-