BEA Systems, Inc.

weblogic.management.runtime
Interface ApplicationRuntimeMBean

All Superinterfaces:
weblogic.health.HealthFeedback

public interface ApplicationRuntimeMBean
extends weblogic.health.HealthFeedback

An application represents a J2EE 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.

ApplicationRuntimeMBean encapsulates runtime information about a deployed Enterprise application.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/documentation/index.html.

Access limited to the following security roles:
Operator

Field Summary
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.
 
Method Summary
 String getApplicationName()
          The name of the Enterprise application.
 String getApplicationVersion()
          The Enterprise application's version identifier.
 ComponentRuntimeMBean[] getComponentRuntimes()
          Returns the list of component runtime instances for each J2EE component (such as an EJB or a Web application) that is contained in this Enterprise application.
 weblogic.management.runtime.LibraryRuntimeMBean[] getLibraryRuntimes()
          Returns the list of library runtime instances for each J2EE library that is contained in this Enterprise application.
 weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean[] getMaxThreadsConstraintRuntimes()
          Get the runtime mbeans for all MaxThreadsConstraints defined at the app-level
 weblogic.management.runtime.MinThreadsConstraintRuntimeMBean[] getMinThreadsConstraintRuntimes()
          Get the runtime mbeans for all MinThreadsConstraints defined at the app-level
 weblogic.management.runtime.LibraryRuntimeMBean[] getOptionalPackageRuntimes()
          Returns the list of optional package runtime instances for each J2EE optional package that is contained in this Enterprise application.
 QueryCacheRuntimeMBean[] getQueryCacheRuntimes()
          Returns a list of QueryCacheRuntimeMBeans configured for this application.
 weblogic.management.runtime.RequestClassRuntimeMBean[] getRequestClassRuntimes()
          Get the runtime mbeans for all request classes defined at the app-level
 weblogic.management.runtime.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()
          Returns the list of Web Service runtime instances that are contained in this Enterprise application.
 boolean hasApplicationCache()
          returns True if the application has an (EJB) Application Level Cache
 ComponentRuntimeMBean[] lookupComponents()
          Deprecated.  
 QueryCacheRuntimeMBean lookupQueryCacheRuntime(String cacheName)
          Returns a QueryCacheRuntimeMBean for the app-scoped query-cache with name 'cacheName'.
 weblogic.management.runtime.WorkManagerRuntimeMBean lookupWorkManagerRuntime(String componentName, String wmName)
          Lookup the WorkManagerRuntimeMBean given the component name and work manager name.
 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.
 
Methods inherited from interface weblogic.health.HealthFeedback
getHealthState
 

Field Detail

UNPREPARED

static final int UNPREPARED
State indicating that none of the modules in this application are currently prepared or active.

See Also:
Constant Field Values

PREPARED

static final int PREPARED
State indicating at least one module in this application is prepared, but none are active.

See Also:
Constant Field Values

ACTIVATED

static final int ACTIVATED
State indicating at least one module in this application is currently active.

See Also:
Constant Field Values
Method Detail

getApplicationName

String getApplicationName()

The name of the Enterprise application.

Returns:
The applicationName value

getApplicationVersion

String getApplicationVersion()

The Enterprise 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.

Returns:
The applicationVersion value

lookupComponents

ComponentRuntimeMBean[] lookupComponents()
Deprecated. 

The ComponentRuntimeMBean's contained in this application

Returns:
Access limited to the following security roles:
Deployer

getComponentRuntimes

ComponentRuntimeMBean[] getComponentRuntimes()

Returns the list of component runtime instances for each J2EE component (such as an EJB or a Web application) that is contained in this Enterprise application.

Returns:

getLibraryRuntimes

weblogic.management.runtime.LibraryRuntimeMBean[] getLibraryRuntimes()

Returns the list of library runtime instances for each J2EE library that is contained in this Enterprise application.

Returns:
LibraryRuntimeMBean Array, null if this App is not referencing any Libraries.

getOptionalPackageRuntimes

weblogic.management.runtime.LibraryRuntimeMBean[] getOptionalPackageRuntimes()

Returns the list of optional package runtime instances for each J2EE optional package that is contained in this Enterprise application.

Returns:
LibraryRuntimeMBean Array, null if this App is not referencing any Optional Packages.

getWorkManagerRuntimes

weblogic.management.runtime.WorkManagerRuntimeMBean[] getWorkManagerRuntimes()

Returns the list of work manager runtime instances for each application-scoped work manager that is associated with this Enterprise application.

Since:
9.0.0.0

lookupWorkManagerRuntime

weblogic.management.runtime.WorkManagerRuntimeMBean lookupWorkManagerRuntime(String componentName,
                                                                             String wmName)

Lookup 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.

Since:
9.0.0.0

getWseeRuntimes

WseeRuntimeMBean[] getWseeRuntimes()

Returns the list of Web Service runtime instances that are contained in this Enterprise application.

Returns:

getMaxThreadsConstraintRuntimes

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean[] getMaxThreadsConstraintRuntimes()

Get the runtime mbeans for all MaxThreadsConstraints defined at the app-level

Since:
9.0.0.0

getMinThreadsConstraintRuntimes

weblogic.management.runtime.MinThreadsConstraintRuntimeMBean[] getMinThreadsConstraintRuntimes()

Get the runtime mbeans for all MinThreadsConstraints defined at the app-level

Since:
9.0.0.0

getRequestClassRuntimes

weblogic.management.runtime.RequestClassRuntimeMBean[] getRequestClassRuntimes()

Get the runtime mbeans for all request classes defined at the app-level

Since:
9.0.0.0

hasApplicationCache

boolean hasApplicationCache()

returns True if the application has an (EJB) Application Level Cache


reInitializeApplicationCachesAndPools

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.


getQueryCacheRuntimes

QueryCacheRuntimeMBean[] getQueryCacheRuntimes()

Returns a list of QueryCacheRuntimeMBeans configured for this application.

Returns:

lookupQueryCacheRuntime

QueryCacheRuntimeMBean lookupQueryCacheRuntime(String cacheName)

Returns a QueryCacheRuntimeMBean for the app-scoped query-cache with name 'cacheName'.

Returns:

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs100
Copyright 2006 BEA Systems Inc.