Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.runtime
Interface JaxRsUriRuntimeMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean
All Known Subinterfaces:
JaxRsResourceRuntimeMBean

public interface JaxRsUriRuntimeMBean
extends RuntimeMBean

Base class for JAX-RS resources.


Method Summary
abstract  JaxRsExecutionStatisticsRuntimeMBean getMethodsStatistics()
          Get execution statistics that contain measurements of times only for execution of resource methods.
abstract  String getPath()
          The relative path that is assigned to this resource.
abstract  JaxRsExecutionStatisticsRuntimeMBean getRequestStatistics()
          Get execution statistics that contain measurements of times for whole processing from time when request comes into the Jersey application until the response is written to the underlying IO container.
abstract  JaxRsResourceMethodRuntimeMBean[] getResourceMethods()
          Return the resource methods available under this resource.
abstract  JaxRsSubResourceLocatorRuntimeMBean[] getSubResourceLocators()
          Return the resource methods available under this resource.
abstract  boolean isExtended()
          Get the flag indicating whether the resource is extended or is a core of exposed RESTful API.
abstract  JaxRsResourceMethodRuntimeMBean lookupResourceMethods(String name)
          Provides the resource method identified by the given name.
abstract  JaxRsSubResourceLocatorRuntimeMBean lookupSubResourceLocators(String name)
          Provides the resource method identified by the given name.

 

Methods inherited from interface weblogic.management.runtime.RuntimeMBean
addPropertyChangeListener, removePropertyChangeListener

 

Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent

 

Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes

 

Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister

 

Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener

 

Method Detail

getPath

String getPath()
The relative path that is assigned to this resource.
Returns:
The path value that is assigned to this resource.

isExtended

boolean isExtended()
Get the flag indicating whether the resource is extended or is a core of exposed RESTful API.

Extended resource model components are helper components that are not considered as a core of a RESTful API. These can be for example OPTIONS resource methods added by model processors or application.wadl resource producing the WADL. Both resource are rather supportive than the core of RESTful API.

Returns:
true if the resource is extended.
Since:
12.2.1.0.0

getMethodsStatistics

JaxRsExecutionStatisticsRuntimeMBean getMethodsStatistics()
Get execution statistics that contain measurements of times only for execution of resource methods. Durations average time, minimum time and maximum time measure only time of execution of resource methods code. It does not involve other request processing phases.
Returns:
Execution statistics of all resource method in this resource.

getRequestStatistics

JaxRsExecutionStatisticsRuntimeMBean getRequestStatistics()
Get execution statistics that contain measurements of times for whole processing from time when request comes into the Jersey application until the response is written to the underlying IO container. The statistics involves only requests that were matched to resource methods defined in JaxRsUriRuntimeMBean.getMethodsStatistics().
Returns:
Execution statistics of entire request processing for all resource method from this resource.

getResourceMethods

JaxRsResourceMethodRuntimeMBean[] getResourceMethods()
Return the resource methods available under this resource.
Returns:
Resource methods available under this resource.

lookupResourceMethods

JaxRsResourceMethodRuntimeMBean lookupResourceMethods(String name)
Provides the resource method identified by the given name.
Parameters:
name - Name of the resource method.
Returns:
Resource method MBean identified by the given name.

getSubResourceLocators

JaxRsSubResourceLocatorRuntimeMBean[] getSubResourceLocators()
Return the resource methods available under this resource.
Returns:
Resource methods available under this resource.

lookupSubResourceLocators

JaxRsSubResourceLocatorRuntimeMBean lookupSubResourceLocators(String name)
Provides the resource method identified by the given name.
Parameters:
name - Name of the resource method.
Returns:
Resource method MBean identified by the given name.

Skip navigation links

Copyright 1996, 2015, 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
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09