Package com.sodius.mdw.server.services
Interface ServicesManager
-
public interface ServicesManagerThe manager of services. A service is the declaration of an MDWorkbench ruleset that is executed on server side.This interface is not intended to be implemented by clients.
- See Also:
MDWorkbenchServer.getServicesManager()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServicegetService(String id)Returns the service matching the specified identifier.Collection<Service>getServices()Returns the list of available services.
-
-
-
Method Detail
-
getServices
Collection<Service> getServices()
Returns the list of available services.- Returns:
- the list of available services.
-
getService
Service getService(String id)
Returns the service matching the specified identifier.- Parameters:
id- the service identifier.- Returns:
- the service matching the specified identifier,
nullif none. - See Also:
Service.getId()
-
-