All module service must implements the ModuleService interface.
Definition at line 45 of file ModuleLoader.java.
Public Member Functions | |
ModuleLoader () | |
Creates a new instance of ModuleLoader. | |
abstract void | preLoadingInit () |
call before the loading of the services | |
abstract void | postLoadingInit () |
call after the loading of the services | |
void | loadService (java.util.Hashtable servicesList) |
load all service attached to this module and reference them in the specified table. | |
void | unloadService (Hashtable servicesList) |
void | preUnloadingInit () |
void | postUnloadingInit () |
abstract String[] | getServiceClassList () |
call to get all service classes to load. | |
Service | getService (String serviceName) |
return the service with the specified service name if exist. |
|
return the service with the specified service name if exist. Null otherwise.
Definition at line 134 of file ModuleLoader.java. |
|
call to get all service classes to load.
|
|
load all service attached to this module and reference them in the specified table.
Definition at line 73 of file ModuleLoader.java. References org.openmobileis.services.Service.getName(), and org.openmobileis.services.Service.getServiceUri(). Referenced by org.openmobileis.services.common.ServiceManager.addModuleLoader(), and org.openmobileis.services.common.ServiceManager.init(). |
|
call after the loading of the services
|
|
call before the loading of the services
|