Package org.apache.servicemix.jbi.framework

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


   
    public List<SharedLibrary> getSharedLibraries() {
        List<SharedLibrary> sharedLibraries = new ArrayList<SharedLibrary>();
        ObjectName[] names = mbean.getSharedLibraryNames();
        for (int i = 0; i < names.length; i++) {
            SharedLibraryMBean mbean = proxyManager.getProxy(names[i], SharedLibraryMBean.class);
            sharedLibraries.add(new SharedLibrary(this, mbean, names[i]));
        }
        return sharedLibraries;
    }
View Full Code Here

TOP

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

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.