javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
public interface DeploymentProgressObjectMBean extends RuntimeMBean
This MBean is the user API for monitoring deployment operations
and exists only on an Administration Server. Currently only start and stop
operations initiated by AppDeploymentRuntimeMBean
are
supported.
Modifier and Type | Field | Description |
---|---|---|
static int |
OPERATION_DEPLOY |
|
static int |
OPERATION_REDEPLOY |
|
static int |
OPERATION_START |
|
static int |
OPERATION_STOP |
|
static int |
OPERATION_UNDEPLOY |
|
static int |
OPERATION_UNIMPLEMENTED |
|
static java.lang.String |
STATE_COMPLETED |
|
static java.lang.String |
STATE_DEFERRED |
|
static java.lang.String |
STATE_FAILED |
|
static java.lang.String |
STATE_INITIALIZED |
|
static java.lang.String |
STATE_RUNNING |
Modifier and Type | Method | Description |
---|---|---|
void |
addMessages(java.util.List msgs) |
add messages for current deployment operation.
|
void |
cancel() |
Attempt to cancel the deployment operation.
|
AppDeploymentMBean |
getAppDeploymentMBean() |
The AppDeploymentMBean for the
current deployment operation.
|
java.lang.String |
getApplicationName() |
The name of the application for the
current deployment operation.
|
long |
getBeginTime() |
The time that the current deployment operation began.
|
DBClientDataDirectoryMBean |
getDBClientDataDirectoryMBean() |
Return the DBClientDataDirectoryMBean for the current deployment operation.
|
long |
getEndTime() |
The time that the current deployment operation ended.
|
java.lang.RuntimeException[] |
getExceptions(java.lang.String target) |
If the current deployment operation has failed,
this method may return zero or
more exception(s) which represent the errors for this target.
|
java.lang.String[] |
getFailedTargets() |
The targets on which the current deployment operation failed.
|
java.lang.String |
getId() |
The unique ID for the current deployment operation.
|
LibraryMBean |
getLibraryMBean() |
Return the LibraryMBean for the
current deployment operation.
|
java.lang.String[] |
getMessages() |
Provides an ordered array of status messages generated
for the current deployment operation.
|
int |
getOperationType() |
The deployment operation type for the
current deployment operation.
|
java.lang.RuntimeException[] |
getRootExceptions() |
If the current deployment operation has failed,
this method may return zero or
more exception(s) which represent the root cause of the failure.
|
java.lang.String |
getState() |
The state of the current deployment operation.
|
java.lang.String[] |
getTargets() |
The targets specified for the
current deployment operation.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
static final int OPERATION_UNIMPLEMENTED
static final int OPERATION_START
static final int OPERATION_STOP
static final int OPERATION_DEPLOY
static final int OPERATION_REDEPLOY
static final int OPERATION_UNDEPLOY
static final java.lang.String STATE_INITIALIZED
static final java.lang.String STATE_RUNNING
static final java.lang.String STATE_COMPLETED
static final java.lang.String STATE_FAILED
static final java.lang.String STATE_DEFERRED
java.lang.String getId()
The unique ID for the current deployment operation.
int getOperationType()
The deployment operation type for the current deployment operation. Possible values are 1 (start) and 2 (stop).
java.lang.String getApplicationName()
The name of the application for the current deployment operation.
AppDeploymentMBean getAppDeploymentMBean()
The AppDeploymentMBean for the current deployment operation.
LibraryMBean getLibraryMBean()
Return the LibraryMBean for the current deployment operation.
DBClientDataDirectoryMBean getDBClientDataDirectoryMBean()
Return the DBClientDataDirectoryMBean for the current deployment operation.
java.lang.String getState()
The state of the current deployment operation. Possible values are STATE_INITIALIZED, STATE_RUNNING, STATE_COMPLETED, STATE_FAILED and STATE_DEFERRED.
java.lang.String[] getTargets()
The targets specified for the current deployment operation.
java.lang.String[] getFailedTargets()
The targets on which the current deployment operation failed.
void addMessages(java.util.List msgs)
add messages for current deployment operation.
java.lang.String[] getMessages()
Provides an ordered array of status messages generated for the current deployment operation.
java.lang.RuntimeException[] getExceptions(java.lang.String target)
If the current deployment operation has failed, this method may return zero or more exception(s) which represent the errors for this target. The array will not contain WLS exception classes; instead they will be new RuntimeExceptions containing the stack traces and messages from the original WLS Exceptions.
target
- the target where exceptions might have occurred.java.lang.RuntimeException[] getRootExceptions()
If the current deployment operation has failed, this method may return zero or more exception(s) which represent the root cause of the failure. The array will not contain WLS exception classes; instead they will be new Exceptions containing the stack traces and messages from the original WLS Exceptions.
void cancel() throws java.lang.RuntimeException
Attempt to cancel the deployment operation. Any actions which have yet to start will be inhibited. Any completed actions will remain in place.
java.lang.RuntimeException
long getBeginTime()
The time that the current deployment operation began. The value is in milliseconds consistent with the system time.
long getEndTime()
The time that the current deployment operation ended. The value is in milliseconds consistent with the system time. If the operation has not ended, the value will be zero.