Examples of ManagedOperationParameter


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
Copyright © 2018 www.massapi.com. 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.