| java.lang.Object org.jboss.mx.server.MethodMapper
MethodMapper | public class MethodMapper (Code) | | Helper class for resolving JMX *Info objects against Method objects. It's typically
used during the construction of dispatchers during MBean registration/creation.
author: Trevor Squires. author: Juha Lindfors author: Scott Stark author: Dimitris Andreadis version: $Revision: 57200 $ |
Constructor Summary | |
public | MethodMapper(Class resourceClass) Constructs a mapper by reflecting on the class. |
MethodMapper | public MethodMapper(Class resourceClass)(Code) | | Constructs a mapper by reflecting on the class.
|
createMap | protected HashMap createMap(Class resourceClass)(Code) | | creates the signature string to Method HashMap.
|
getterSignature | public static String getterSignature(MBeanAttributeInfo info)(Code) | | Generates a signature string for an attribute getter method using standard rules
|
lookupOperation | public static Method lookupOperation(MBeanOperationInfo info, Object mbean)(Code) | | Used to see if a ModelMBean has the operation in question.
Parameters: info - Parameters: mbean - The mbean method if found, null otherwise |
methodSignature | public static String methodSignature(Method method)(Code) | | Generates a signature string using a Method object.
|
methodSignature | public static String methodSignature(String returnType, String name, String[] signature)(Code) | | Generates a signature string using the supplied signature arguments.
|
setterSignature | public static String setterSignature(MBeanAttributeInfo info)(Code) | | Generates a signature string for an attribute setter method using standard rules
|
|
|