Package | Description |
---|---|
javax.slee.management |
This package defines the SLEE external management interfaces.
|
Modifier and Type | Field and Description |
---|---|
static ServiceState |
ServiceState.ACTIVE
The ACTIVE state indicates that the Service has been activated.
|
static ServiceState |
ServiceState.INACTIVE
The INACTIVE state indicates that the Service has been successfully
installed.
|
static ServiceState |
ServiceState.STOPPING
The STOPPING state indicates that an active Service has been deactivated,
but some instances of the Service are still running.
|
Modifier and Type | Method and Description |
---|---|
static ServiceState |
ServiceState.fromInt(int state)
Get a
ServiceState object from an integer value. |
static ServiceState |
ServiceState.fromString(String state)
Get a
ServiceState object from an integer value. |
ServiceState |
ServiceStateChangeNotification.getNewState()
Get the new operational state of the Service.
|
ServiceState |
ServiceStateChangeNotification.getOldState()
Get the state the Service was in before the change to the new state.
|
ServiceState |
ServiceManagementMBean.getState(ServiceID id)
Get the current state of a Service.
|
Modifier and Type | Method and Description |
---|---|
ServiceID[] |
ServiceManagementMBean.getServices(ServiceState state)
Get the set of services that are in a particular state.
|
Constructor and Description |
---|
ServiceStateChangeNotification(ServiceManagementMBean serviceManagementMBean,
ServiceID service,
ServiceState newState,
ServiceState oldState,
long sequenceNumber)
Create a
ServiceStateChangeNotification to notify listeners of a
change in the operational state of a Service. |