javax.management.DynamicMBean, javax.management.MBeanRegistration, javax.management.NotificationBroadcaster, RuntimeMBean, WebLogicMBeanpublic interface DBClientDataDeploymentRuntimeMBean extends RuntimeMBean
This MBean provides deployment operations for a DBClientData module.
| Modifier and Type | Method | Description | 
|---|---|---|
java.lang.String | 
getDBClientDataName() | 
 The DBClientData's name. 
 | 
DeploymentProgressObjectMBean | 
redeploy() | 
 Redeploy the DBClientData using the default options and
 configured targets. 
 | 
DeploymentProgressObjectMBean | 
redeploy(java.lang.String applicationPath,
        java.util.Properties deploymentOptions) | 
 Redeploy the DBClientData in the background for all servers in the domain
 with the options specified. 
 | 
DeploymentProgressObjectMBean | 
redeploy(java.util.Properties deploymentOptions) | 
 Redeploy the DBClientData in the background for all servers in the domain
 with the options specified. 
 | 
DeploymentProgressObjectMBean | 
undeploy() | 
 Undeploy the DBClientData using the default options and
 configured targets. 
 | 
DeploymentProgressObjectMBean | 
undeploy(java.util.Properties deploymentOptions) | 
 Undeploy the DBClientData in the background for all servers in the domain
 with the options specified. 
 | 
getAttribute, getAttributes, invoke, setAttribute, setAttributespostDeregister, postRegister, preRegisteraddNotificationListener, getNotificationInfo, removeNotificationListeneraddPropertyChangeListener, removePropertyChangeListenergetMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParentjava.lang.String getDBClientDataName()
The DBClientData's name.
DeploymentProgressObjectMBean undeploy() throws java.lang.RuntimeException
Undeploy the DBClientData using the default options and configured targets. This is a synchronous operation that returns when the redeploy operation has completed. The default options are adminMode boolean false timeout: no timeout
DeploymentProgressObjectMBean An object that provides the
 state of the undeploy operation.RuntimeExceptionm - if the operation cannot be started
 All other errors are reported via the returned
 DeploymentProgressObjectMBean.java.lang.RuntimeExceptionDeploymentProgressObjectMBean undeploy(java.util.Properties deploymentOptions) throws java.lang.RuntimeException
Undeploy the DBClientData in the background for all servers in the domain
 with the options specified.  This is an asynchronous operation that
 returns immediately.  The returned DeploymentProgressObjectMBean
 can be used to determine when the operation is completed.
deploymentOptions - Allows for overriding the deployment options. 
 If null, default options will be used.
 The values should all be of type
 The keys,units and default values for options are
 adminMode boolean false
 timeout milliseconds 0 (no timeout)java.lang.RuntimeException - if the operation cannot be started
 All other errors are reported via the returned
 DeploymentProgressObjectMBean.DeploymentProgressObjectMBean redeploy() throws java.lang.RuntimeException
Redeploy the DBClientData using the default options and configured targets. This is a synchronous operation that returns when the redeploy operation has completed. The default options are adminMode: false, timeout: no timeout
DeploymentProgressObjectMBean An object that provides the
 state of the redeploy operation.RuntimeExceptionm - if the operation cannot be started
 All other errors are reported via the returned
 DeploymentProgressObjectMBean.java.lang.RuntimeExceptionDeploymentProgressObjectMBean redeploy(java.util.Properties deploymentOptions) throws java.lang.RuntimeException
Redeploy the DBClientData in the background for all servers in the domain
 with the options specified.  This is an asynchronous operation that
 returns immediately.  The returned DeploymentProgressObjectMBean
 can be used to determine when the operation is completed.
deploymentOptions - Allows for overriding the deployment options. 
 If null, default options will be used.
 The keys,units and default values for options are
 adminMode boolean false,
 timeout milliseconds 0 (no timeout)java.lang.RuntimeException - if the operation cannot be started
 All other errors are reported via the returned
 DeploymentProgressObjectMBean.DeploymentProgressObjectMBean redeploy(java.lang.String applicationPath, java.util.Properties deploymentOptions) throws java.lang.RuntimeException
Redeploy the DBClientData in the background for all servers in the domain
 with the options specified.  This is an asynchronous operation that
 returns immediately.  The returned DeploymentProgressObjectMBean
 can be used to determine when the operation is completed.
applicationPath - A DBClientData module archive, or a root diectory for the module. May be null.deploymentOptions - Allows for overriding the deployment options.
 If null, default options will be used.java.lang.RuntimeException - if the operation cannot be started
 All other errors are reported via the returned
 DeploymentProgressObjectMBean.