javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, ServerStates
, ServerStates
, WebLogicMBean
public interface SystemComponentLifeCycleRuntimeMBean extends RuntimeMBean, ServerStates
Provides methods that transition system component from one state to another. This class is instantiated only on the Administration Server, but you can use it to transition the states of all managed system component servers.
To start system components, you must first configure a Node Manager on each component's host machine.
ACTIVATE_LATER, ADMIN, FAILED, FAILED_NOT_RESTARTABLE, FAILED_RESTARTING, FORCE_SHUTTING_DOWN, FORCE_SUSPENDING, INACTIVE, RESUMING, RUNNING, SHUTDOWN, SHUTDOWN_IN_PROCESS, SHUTDOWN_PENDING, SHUTTING_DOWN, STANDBY, STARTING, SUSPENDING, UNKNOWN
Modifier and Type | Method | Description |
---|---|---|
int |
getNodeManagerRestartCount() |
The number of times the server has been restarted using the Node Manager
since its creation.
|
java.lang.String |
getState() |
The current state of the server.
|
SystemComponentLifeCycleTaskRuntimeMBean[] |
getTasks() |
Gets pre-existing server life cycle tasks.
|
SystemComponentLifeCycleTaskRuntimeMBean |
lookupTask(java.lang.String taskName) |
Gets a pre-existing server life cycle task by name.
|
SystemComponentLifeCycleTaskRuntimeMBean |
shutdown(java.util.Properties props) |
Uses Node Manager to shut down a system component.
|
SystemComponentLifeCycleTaskRuntimeMBean |
softRestart(java.util.Properties props) |
Uses Node Manager to signal a system component for softRestart.
|
SystemComponentLifeCycleTaskRuntimeMBean |
start(java.util.Properties props) |
Uses Node Manager to start a system component.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
SystemComponentLifeCycleTaskRuntimeMBean start(java.util.Properties props) throws ServerLifecycleException
Uses Node Manager to start a system component.
props
- properties to use when starting this system component.
These properties are used by the nodemanager plugin.ServerLifecycleException
- If start operation failsSystemComponentLifeCycleTaskRuntimeMBean shutdown(java.util.Properties props) throws ServerLifecycleException
Uses Node Manager to shut down a system component.
props
- properties to use when shutting down this system component.
These properties are used by the nodemanager plugin.ServerLifecycleException
- If shutdown fails. The server
process will exit after ServerMBean.ServerLifeCycleTimeoutVal() seconds.SystemComponentLifeCycleTaskRuntimeMBean[] getTasks()
SystemComponentLifeCycleTaskRuntimeMBean lookupTask(java.lang.String taskName)
taskName
- a string used to find a task of the same namejava.lang.String getState()
The current state of the server.
Server states are described in "Managing Server Startup and Shutdown for Oracle WebLogic Server."int getNodeManagerRestartCount()
SystemComponentLifeCycleTaskRuntimeMBean softRestart(java.util.Properties props) throws ServerLifecycleException
Uses Node Manager to signal a system component for softRestart.
props
- properties to use when soft-restarting this system component.
These properties are used by the nodemanager plugin.ServerLifecycleException
- If softRestart operation fails