javax.management.DynamicMBean
, HealthFeedback
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
@Contract public interface ApplicationRuntimeMBean extends RuntimeMBean, HealthFeedback
An application represents a Java EE enterprise application packaged in an EAR file or EAR exploded directory. The EAR file or directory contains a set of components such as WAR, EJB, and RAR connector components, each of which can be deployed on one or more targets. A target is a server or a cluster. Modules in the application can have one of the following states:
ApplicationRuntimeMBean encapsulates runtime information about a deployed enterprise application.
Modifier and Type | Field | Description |
---|---|---|
static int |
ACTIVATED |
State indicating at least one module in this application is currently active.
|
static int |
PREPARED |
State indicating at least one module in this application is prepared, but none are active.
|
static int |
UNPREPARED |
State indicating that none of the modules in this application are currently prepared or active.
|
Modifier and Type | Method | Description |
---|---|---|
int |
getActiveVersionState() |
Specifies whether this application version is the currently active
version.
|
java.lang.String |
getApplicationName() |
The name of the application.
|
java.lang.String |
getApplicationVersion() |
The application's version identifier.
|
ClassLoaderRuntimeMBean |
getClassLoaderRuntime() |
Get statistics for system-level class loading.
|
ClassRedefinitionRuntimeMBean |
getClassRedefinitionRuntime() |
If the class FastSwap feature is enabled for the application, returns the
runtime MBean to monitor and control the class FastSwap within the application.
|
CoherenceClusterRuntimeMBean |
getCoherenceClusterRuntime() |
Returns the Coherence Cluster related runtime MBean.
|
ComponentRuntimeMBean[] |
getComponentRuntimes() |
Returns the list of component runtime instances for each Java EE
component (such as an EJB or a web application) that is contained in
this enterprise application.
|
HealthState |
getHealthState() |
The HealthState MBean for the application.
|
javax.management.openmbean.CompositeData |
getHealthStateJMX() |
The health state for the application.
|
LibraryRuntimeMBean[] |
getLibraryRuntimes() |
Returns the list of library runtime instances for each Java EE
library that is contained in this enterprise application.
|
ManagedExecutorServiceRuntimeMBean[] |
getManagedExecutorServiceRuntimes() |
Returns the list of managed executor service runtime instances for each
application-scoped managed executor service that is associated with this enterprise
application.
|
ManagedScheduledExecutorServiceRuntimeMBean[] |
getManagedScheduledExecutorServiceRuntimes() |
Returns the list of managed scheduled executor service runtime instances for each
application-scoped managed scheduled executor service that is associated with this
enterprise application.
|
ManagedThreadFactoryRuntimeMBean[] |
getManagedThreadFactoryRuntimes() |
Returns the list of managed thread factory runtime instances for each
application-scoped managed thread factory that is associated with this enterprise
application.
|
MaxThreadsConstraintRuntimeMBean[] |
getMaxThreadsConstraintRuntimes() |
Get the runtime MBeans for all MaxThreadsConstraints defined at the
application level.
|
MinThreadsConstraintRuntimeMBean[] |
getMinThreadsConstraintRuntimes() |
Get the runtime MBeans for all MinThreadsConstraints defined at the
application level.
|
LibraryRuntimeMBean[] |
getOptionalPackageRuntimes() |
Returns the list of optional package runtime instances for each Java EE
optional package that is contained in this enterprise application.
|
HealthState |
getOverallHealthState() |
The overall health of the application including that of some of the
components that report health.
|
javax.management.openmbean.CompositeData |
getOverallHealthStateJMX() |
The overall health of the application including that of some of the
components that report health.
|
PersistenceUnitRuntimeMBean |
getPersistenceUnitRuntime(java.lang.String unitName) |
Provides the PersistenceUnitRuntimeMBean for the application with the specified
name.
|
PersistenceUnitRuntimeMBean[] |
getPersistenceUnitRuntimes() |
Provides an array of PersistenceUnitRuntimeMBean objects for this EAR
module.
|
QueryCacheRuntimeMBean[] |
getQueryCacheRuntimes() |
Returns a list of QueryCacheRuntimeMBeans configured for
this application.
|
RequestClassRuntimeMBean[] |
getRequestClassRuntimes() |
Get the runtime MBeans for all request classes defined at the
application level.
|
WorkManagerRuntimeMBean[] |
getWorkManagerRuntimes() |
Returns the list of work manager runtime instances for each
application-scoped work manager that is associated with this enterprise
application.
|
WseeRuntimeMBean[] |
getWseeRuntimes() |
Deprecated.
Use getWseeV2Runtimes from the web app or EJB component instead
|
WseeV2RuntimeMBean[] |
getWseeV2Runtimes() |
Returns the list of Web Service runtime instances that are contained
at the application scope of this enterprise application.
|
boolean |
hasApplicationCache() |
Returns true if the application has an (EJB) Application Level Cache
|
boolean |
isInternal() |
Indicates whether this application is an internal application.
|
ComponentRuntimeMBean[] |
lookupComponents() |
Deprecated.
|
ManagedExecutorServiceRuntimeMBean |
lookupManagedExecutorServiceRuntime(java.lang.String componentName,
java.lang.String name) |
Look up the ManagedExecutorServiceRuntimeMBean given the component name and
managed executor service name.
|
ManagedScheduledExecutorServiceRuntimeMBean |
lookupManagedScheduledExecutorServiceRuntime(java.lang.String componentName,
java.lang.String name) |
Look up the ManagedScheduledExecutorServiceRuntimeMBean given the component name and
managed scheduled executor service name.
|
ManagedThreadFactoryRuntimeMBean |
lookupManagedThreadFactoryRuntime(java.lang.String componentName,
java.lang.String name) |
Look up the ManagedThreadFactoryRuntimeMBean given the component name and
managed thread factory name.
|
QueryCacheRuntimeMBean |
lookupQueryCacheRuntime(java.lang.String cacheName) |
Returns a QueryCacheRuntimeMBean for the app-scoped query-cache
with name 'cacheName'.
|
WorkManagerRuntimeMBean |
lookupWorkManagerRuntime(java.lang.String componentName,
java.lang.String wmName) |
Look up the WorkManagerRuntimeMBean given the component name and
work manager name.
|
WseeV2RuntimeMBean |
lookupWseeV2Runtime(java.lang.String name) |
Returns a named Web Service runtime instance that is contained
at application scope of this enterprise application.
|
void |
reInitializeApplicationCachesAndPools() |
If the application has an (EJB) Application Level Cache,
then this method will reinitialize the cache and any
of its associated pools to their startup time states
if possible.
|
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 UNPREPARED
static final int PREPARED
static final int ACTIVATED
java.lang.String getApplicationName()
The name of the application.
java.lang.String getApplicationVersion()
The application's version identifier.
This is particularly useful, when using the side-by-side deployment feature, to differentiate between two different versions of the same application that are deployed at the same time.
int getActiveVersionState()
Specifies whether this application version is the currently active version.
An application can be the only version currently deployed, or it can have more than one version currently deployed, using the side-by-side deployment feature. If more than one version is deployed, only one version can be active. This attribute specifies the state the current application version is in.
An application can be in an INACTIVE state, which means that it has not been activated yet, or that there is more than one version of the application deployed (using side-by-side deployment) and this version is retiring.
An application can be in ACTIVE_ADMIN state, which means that it is the currently active version for administrative channel requests.
An application can be in ACTIVE state, which means that it is the currently active version for normal (non-administrative) channel requests.
AppActiveVersionState
@Deprecated ComponentRuntimeMBean[] lookupComponents()
The ComponentRuntimeMBean's contained in this application.
ComponentRuntimeMBean[] getComponentRuntimes()
Returns the list of component runtime instances for each Java EE component (such as an EJB or a web application) that is contained in this enterprise application.
LibraryRuntimeMBean[] getLibraryRuntimes()
Returns the list of library runtime instances for each Java EE library that is contained in this enterprise application.
LibraryRuntimeMBean[] getOptionalPackageRuntimes()
Returns the list of optional package runtime instances for each Java EE optional package that is contained in this enterprise application.
WorkManagerRuntimeMBean[] getWorkManagerRuntimes()
Returns the list of work manager runtime instances for each application-scoped work manager that is associated with this enterprise application.
WorkManagerRuntimeMBean lookupWorkManagerRuntime(java.lang.String componentName, java.lang.String wmName)
Look up the WorkManagerRuntimeMBean given the component name and work manager name. If the component name is null then the WorkManagerRuntime is retrieved from the application itself.
componentName
- wmName
- ClassLoaderRuntimeMBean getClassLoaderRuntime()
Get statistics for system-level class loading.
@Deprecated WseeRuntimeMBean[] getWseeRuntimes()
Returns the list of Web Service runtime instances that are contained in this enterprise application.
WseeV2RuntimeMBean[] getWseeV2Runtimes()
Returns the list of Web Service runtime instances that are contained at the application scope of this enterprise application. This can happen when javax.xml.ws.Endpoint.publish() is called from within an application lifecycle listener.
WseeV2RuntimeMBean lookupWseeV2Runtime(java.lang.String name)
Returns a named Web Service runtime instance that is contained at application scope of this enterprise application.
name
- The web service description name of the web service to look
up.MaxThreadsConstraintRuntimeMBean[] getMaxThreadsConstraintRuntimes()
Get the runtime MBeans for all MaxThreadsConstraints defined at the application level.
MinThreadsConstraintRuntimeMBean[] getMinThreadsConstraintRuntimes()
Get the runtime MBeans for all MinThreadsConstraints defined at the application level.
RequestClassRuntimeMBean[] getRequestClassRuntimes()
Get the runtime MBeans for all request classes defined at the application level.
boolean hasApplicationCache()
Returns true if the application has an (EJB) Application Level Cache
void reInitializeApplicationCachesAndPools()
If the application has an (EJB) Application Level Cache, then this method will reinitialize the cache and any of its associated pools to their startup time states if possible.
QueryCacheRuntimeMBean[] getQueryCacheRuntimes()
Returns a list of QueryCacheRuntimeMBeans configured for this application.
QueryCacheRuntimeMBean lookupQueryCacheRuntime(java.lang.String cacheName)
Returns a QueryCacheRuntimeMBean for the app-scoped query-cache with name 'cacheName'.
cacheName
- PersistenceUnitRuntimeMBean[] getPersistenceUnitRuntimes()
Provides an array of PersistenceUnitRuntimeMBean objects for this EAR module.
PersistenceUnitRuntimeMBean getPersistenceUnitRuntime(java.lang.String unitName)
Provides the PersistenceUnitRuntimeMBean for the application with the specified name.
unitName
- ClassRedefinitionRuntimeMBean getClassRedefinitionRuntime()
If the class FastSwap feature is enabled for the application, returns the runtime MBean to monitor and control the class FastSwap within the application.
HealthState getHealthState()
The HealthState MBean for the application.
getHealthState
in interface HealthFeedback
HealthState
HealthState getOverallHealthState()
The overall health of the application including that of some of the components that report health. Currently, only connector modules report health status and are the only ones considered in the overall health state of the application.
HealthState
javax.management.openmbean.CompositeData getHealthStateJMX() throws javax.management.openmbean.OpenDataException
The health state for the application.
javax.management.openmbean.OpenDataException
javax.management.openmbean.CompositeData getOverallHealthStateJMX() throws javax.management.openmbean.OpenDataException
The overall health of the application including that of some of the components that report health. Currently, only connector modules report health status and are the only ones considered in the overall health state of the application.
javax.management.openmbean.OpenDataException
CoherenceClusterRuntimeMBean getCoherenceClusterRuntime()
Returns the Coherence Cluster related runtime MBean.
boolean isInternal()
Indicates whether this application is an internal application. Such applications are not displayed in the console or persisted in the config.xml.
ManagedThreadFactoryRuntimeMBean[] getManagedThreadFactoryRuntimes()
Returns the list of managed thread factory runtime instances for each application-scoped managed thread factory that is associated with this enterprise application.
ManagedThreadFactoryRuntimeMBean lookupManagedThreadFactoryRuntime(java.lang.String componentName, java.lang.String name)
Look up the ManagedThreadFactoryRuntimeMBean given the component name and managed thread factory name. If the component name is null then the ManagedThreadFactoryRuntimeMBean is retrieved from the application itself.
componentName
- name
- ManagedExecutorServiceRuntimeMBean[] getManagedExecutorServiceRuntimes()
Returns the list of managed executor service runtime instances for each application-scoped managed executor service that is associated with this enterprise application.
ManagedExecutorServiceRuntimeMBean lookupManagedExecutorServiceRuntime(java.lang.String componentName, java.lang.String name)
Look up the ManagedExecutorServiceRuntimeMBean given the component name and managed executor service name. If the component name is null then the ManagedExecutorServiceRuntimeMBean is retrieved from the application itself.
componentName
- name
- ManagedScheduledExecutorServiceRuntimeMBean[] getManagedScheduledExecutorServiceRuntimes()
Returns the list of managed scheduled executor service runtime instances for each application-scoped managed scheduled executor service that is associated with this enterprise application.
ManagedScheduledExecutorServiceRuntimeMBean lookupManagedScheduledExecutorServiceRuntime(java.lang.String componentName, java.lang.String name)
Look up the ManagedScheduledExecutorServiceRuntimeMBean given the component name and managed scheduled executor service name. If the component name is null then the ManagedScheduledExecutorServiceRuntimeMBean is retrieved from the application itself.
componentName
- name
-