Package net.officefloor.compile
Interface SupplierSourceService<S extends SupplierSource>
-
- All Known Implementing Classes:
JaxRsSupplierSourceService
,SpringSupplierSourceService
public interface SupplierSourceService<S extends SupplierSource>
Service to plug-in an
SupplierSource
Class
alias by including the extensionSupplierSource
jar on the class path.OfficeFloorCompiler.addSupplierSourceAlias(String, Class)
will be invoked for each foundSupplierSourceService
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getSupplierSourceAlias()
Obtains the alias for theSupplierSource
Class
.java.lang.Class<S>
getSupplierSourceClass()
Obtains theSupplierSource
Class
.
-
-
-
Method Detail
-
getSupplierSourceAlias
java.lang.String getSupplierSourceAlias()
Obtains the alias for theSupplierSource
Class
.- Returns:
- Alias for the
SupplierSource
Class
.
-
getSupplierSourceClass
java.lang.Class<S> getSupplierSourceClass()
Obtains theSupplierSource
Class
.- Returns:
SupplierSource
Class
.
-
-