All Downloads are FREE. Search and download functionalities are using the official Maven repository.

one.xingyi.profile.jboss.MBeanRegistry Maven / Gradle / Ivy

There is a newer version: 1.5.9
Show newest version
package one.xingyi.profile.jboss;

import java.util.Collections;
import java.util.ArrayList;
import java.util.List;

public class MBeanRegistry {
    private static List mbeanNames = Collections.synchronizedList(new ArrayList<>());

    public static void registerMBean(String mbeanName) {
        mbeanNames.add(mbeanName);
    }

    public static List getRegisteredMBeans() {
        return Collections.unmodifiableList(mbeanNames);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy