Package org.apache.servicemix.jbi.framework

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


    public List<ServiceUnit> getServiceUnits() {
        List<ServiceUnit> serviceUnits = new ArrayList<ServiceUnit>();
        ObjectName[] names = mbean.getServiceUnitNames();
        for (int i = 0; i < names.length; i++) {
            ServiceUnitMBean mbean = proxyManager.getProxy(names[i], ServiceUnitMBean.class);
            serviceUnits.add(new ServiceUnit(this, mbean, names[i]));
        }
        return serviceUnits;
    }
View Full Code Here

TOP

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

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.