public class ServiceManager
extends java.lang.Object
An instance of the ServiceManager is created by the Node when
it is initialized. This reference can be obtained from the Node
class.
The class allows the local Node's services to be installed and started. The class does not currently allow services to removed. Services can be stopped by obtaining their reference and stopping them directly.
| Constructor and Description |
|---|
ServiceManager() |
| Modifier and Type | Method and Description |
|---|---|
Service |
getService(java.lang.String name)
Returns the
Service object of the service with the specified name. |
java.lang.String[] |
getServiceNames()
Returns an array containing an array of String objects
which represent the names of the currently installed
services.
|
boolean |
installService(ServiceSettings settings,
java.lang.Class serviceClass)
Installs a service as specified by its class and a set
of settings.
|
boolean |
installService(Service service,
java.lang.String name)
Installs a
Service object as a service in this
ServiceManager. |
boolean |
startService(java.lang.String name)
Starts the service with the specified name.
|
boolean |
uninstallService(java.lang.String name)
This method allows a service that is not running to be
uninstalled.
|
public boolean installService(ServiceSettings settings, java.lang.Class serviceClass)
settings - the settings for the service.serviceClass - the Class object of the class of the service to install.true iff the service has successfully been installed.public boolean installService(Service service, java.lang.String name)
Service object as a service in this
ServiceManager. The name of the service must be supplied.service - the Service object to install.name - the name of the service.true iff the service has been successfully installed.public boolean startService(java.lang.String name)
name - the name of the service to start.true iff the service has been successfully started.public boolean uninstallService(java.lang.String name)
This method allows a service that is not running to be uninstalled.
A running service can be uninstalled by obtaining the service
reference, calling its stop() method and then
calling this method with the service's name.
name - the name of the service to uninstall.true iff the service has been uninstalled.public Service getService(java.lang.String name)
Returns the Service object of the service with the specified name.
name - the name of the serviceService object of the service with the specified name.public java.lang.String[] getServiceNames()
String service names.Copyright © 1996–2022. All rights reserved.