Package | Description |
---|---|
javax.slee.management |
This package defines the SLEE external management interfaces.
|
Modifier and Type | Field and Description |
---|---|
static ResourceAdaptorEntityState |
ResourceAdaptorEntityState.ACTIVE
The ACTIVE state indicates that the resource adaptor entity has been activated and
it is able to deliver events from the underlying resource to the SLEE.
|
static ResourceAdaptorEntityState |
ResourceAdaptorEntityState.INACTIVE
The INACTIVE state indicates that the resource adaptor entity has been successfully
created and configured.
|
static ResourceAdaptorEntityState |
ResourceAdaptorEntityState.STOPPING
The STOPPING state indicates that an active resource adaptor entity has been
deactivated but some activities created by the resource adaptor entity still exist.
|
Modifier and Type | Method and Description |
---|---|
static ResourceAdaptorEntityState |
ResourceAdaptorEntityState.fromInt(int state)
Get a
ResourceAdaptorEntityState object from an integer value. |
static ResourceAdaptorEntityState |
ResourceAdaptorEntityState.fromString(String state)
Get a
ResourceAdaptorEntityState object from a string value. |
ResourceAdaptorEntityState |
ResourceAdaptorEntityStateChangeNotification.getNewState()
Get the new operational state of the resource adaptor entity.
|
ResourceAdaptorEntityState |
ResourceAdaptorEntityStateChangeNotification.getOldState()
Get the state the resource adaptor entity was in before the change to the new state.
|
ResourceAdaptorEntityState |
ResourceManagementMBean.getState(String entityName)
Get the current state of a resource adaptor entity.
|
Modifier and Type | Method and Description |
---|---|
String[] |
ResourceManagementMBean.getResourceAdaptorEntities(ResourceAdaptorEntityState state)
Get the set of resource adaptor entities that are in a particular state.
|
Constructor and Description |
---|
ResourceAdaptorEntityStateChangeNotification(ResourceManagementMBean resourceManagementMBean,
String entityName,
ResourceAdaptorEntityState newState,
ResourceAdaptorEntityState oldState,
long sequenceNumber)
Create a
ResourceAdaptorEntityStateChangeNotification to notify
listeners of a change in the operational state of a resource adaptor entity. |