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

Part Number E27170-01

weblogic.management.runtime
Interface JaxRsResourceMethodBaseRuntimeMBean

All Superinterfaces:
DynamicMBean, JaxRsMonitoringInfoRuntimeMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean
All Known Subinterfaces:
JaxRsResourceMethodRuntimeMBean, JaxRsSubResourceLocatorRuntimeMBean

public interface JaxRsResourceMethodBaseRuntimeMBean
extends JaxRsMonitoringInfoRuntimeMBean

The runtime MBean base class for both resource methods and sub-resource locators. A JAX-RS resource can contain zero or more resource methods.

Access limited to the following security roles:
Operator

Method Summary
 String getMethodName()
          Provides the method name
 String[] getParameterTypes()
          Provides the parameter types of the method
 String getPath()
          Provides the path annotated in the method
 String getReturnType()
          Provides the return type of the method
 
Methods inherited from interface weblogic.management.runtime.JaxRsMonitoringInfoRuntimeMBean
getExecutionTimeAverage, getExecutionTimeHigh, getExecutionTimeLow, getExecutionTimeTotal, getInvocationCount, getLastInvocationTime, getStartTime
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, 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()

Provides the path annotated in the method

Returns:
The path that is annotated with @Path annotation. It returns "" if there is no @Path annotation

getMethodName

String getMethodName()

Provides the method name

Returns:
The name of the resource method

getParameterTypes

String[] getParameterTypes()

Provides the parameter types of the method

Returns:
The array of parameter types. Each item in the array is the type of the parameter. Returns an empty list for the resource method or the sub-resource locator that takes no parameter

getReturnType

String getReturnType()

Provides the return type of the method

Returns:
The name of the return type of the resource method or the sub-resource method. Returns null for void method.

Copyright 1996, 2013, 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.1.2)

Part Number E27170-01