Package org.apache.servicemix.jbi.framework

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


    public List<Endpoint> getEndpoints() {
        List<Endpoint> endpoints = new ArrayList<Endpoint>();
        ObjectName[] names = mbean.getEndpointNames();
        for (int i = 0; i < names.length; i++) {
            EndpointMBean mbean = proxyManager.getProxy(names[i], EndpointMBean.class);
            endpoints.add(new Endpoint(this, mbean, names[i]));
        }
        return endpoints;
    }
View Full Code Here

TOP

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

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.