Package org.serviceconnector.registry.jmx

Examples of org.serviceconnector.registry.jmx.RegistryEntryWrapperJMX


  @Override
  public RegistryEntryWrapperJMX[] getEntries() {
    RegistryEntryWrapperJMX[] mapBeanStringJMX = new RegistryEntryWrapperJMX[registryMap.size()];
    int i = 0;
    for (Object key : registryMap.keySet()) {
      mapBeanStringJMX[i] = new RegistryEntryWrapperJMX(key.toString(), registryMap.get(key));
      i++;
    }
    return mapBeanStringJMX;
  }
View Full Code Here

TOP

Related Classes of org.serviceconnector.registry.jmx.RegistryEntryWrapperJMX

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.