Package org.springframework.jmx.export.metadata

Examples of org.springframework.jmx.export.metadata.ManagedOperationParameter


    MBeanParameterInfo[] parameterInfo = new MBeanParameterInfo[params.length];
    Class[] methodParameters = method.getParameterTypes();

    for (int i = 0; i < params.length; i++) {
      ManagedOperationParameter param = params[i];
      parameterInfo[i] =
          new MBeanParameterInfo(param.getName(), methodParameters[i].getName(), param.getDescription());
    }

    return parameterInfo;
  }
View Full Code Here

TOP

Related Classes of org.springframework.jmx.export.metadata.ManagedOperationParameter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.