Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02

weblogic.management.runtime
Interface ServletRuntimeMBean


public interface ServletRuntimeMBean

Describes a servlet.

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/products/weblogic/index.html.

Access limited to the following security roles:
Operator

Method Summary
 String getContextPath()
          Provides the context path for this servlet.
 int getExecutionTimeAverage()
          Provides the average amount of time all invocations of the servlet have executed since created.
 int getExecutionTimeHigh()
          Provides the amount of time the single longest invocation of the servlet has executed since created.
 int getExecutionTimeLow()
          Provides the amount of time the single shortest invocation of the servlet has executed since created.
 long getExecutionTimeTotal()
          Provides the total amount of time all invocations of the servlet have executed since created.
 int getInvocationTotalCount()
          Provides a total count of the times this servlet has been invoked.
 int getPoolMaxCapacity()
          Provides the maximum capacity of this servlet for single thread model servlets.
 int getReloadTotalCount()
          Provides a total count of the number of times this servlet has been reloaded.
 String getServletClassName()
          Provides the servlet class name
 String getServletName()
          Provides the name of this instance of a servlet.
 String getServletPath()
          Provides the servlet path.
 String getURL()
          Provides the value of the URL for this servlet.
 String[] getURLPatterns()
          Provides a description of the URL patterns for this servlet.
 

Method Detail

getServletName

String getServletName()

Provides the name of this instance of a servlet.

Returns:
The servletName value

getServletClassName

String getServletClassName()

Provides the servlet class name

Returns:
The servlet class name

getReloadTotalCount

int getReloadTotalCount()

Provides a total count of the number of times this servlet has been reloaded.

Returns:
The reloadTotalCount value

getInvocationTotalCount

int getInvocationTotalCount()

Provides a total count of the times this servlet has been invoked.

Returns:
The invocationTotalCount value

getPoolMaxCapacity

int getPoolMaxCapacity()

Provides the maximum capacity of this servlet for single thread model servlets.

Returns:
The poolMaxCapacity value

getExecutionTimeTotal

long getExecutionTimeTotal()

Provides the total amount of time all invocations of the servlet have executed since created.

Returns:
The executionTimeTotal value

getExecutionTimeHigh

int getExecutionTimeHigh()

Provides the amount of time the single longest invocation of the servlet has executed since created.

Returns:
The executionTimeHigh value

getExecutionTimeLow

int getExecutionTimeLow()

Provides the amount of time the single shortest invocation of the servlet has executed since created. Note that for the CounterMonitor, the difference option must be used.

Returns:
The executionTimeLow value

getExecutionTimeAverage

int getExecutionTimeAverage()

Provides the average amount of time all invocations of the servlet have executed since created.

Returns:
The executionTimeAverage value

getServletPath

String getServletPath()

Provides the servlet path.

Returns:
The servletPath value

getContextPath

String getContextPath()

Provides the context path for this servlet.

Returns:
The contextPath value

getURL

String getURL()

Provides the value of the URL for this servlet.

Returns:
The uRL value

getURLPatterns

String[] getURLPatterns()

Provides a description of the URL patterns for this servlet.

Returns:
url patterns for this servlet

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02