Package org.apache.servicemix.jbi.framework

Examples of org.apache.servicemix.jbi.framework.ComponentMBean


    public List<Component> getComponents() {
        List<Component> components = new ArrayList<Component>();
        ObjectName[] names = mbean.getComponentNames();
        for (int i = 0; i < names.length; i++) {
            ComponentMBean mbean = proxyManager.getProxy(names[i], ComponentMBean.class);
            if (!"#SubscriptionManager#".equals(mbean.getName())) {
                components.add(new Component(this, mbean, names[i]));
            }
        }
        return components;
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.jbi.framework.ComponentMBean

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.