Package org.apache.servicemix.nmr.management

Examples of org.apache.servicemix.nmr.management.ManagedEndpointMBean


        ObjectName query = ObjectName.getInstance("org.apache.servicemix:Type=Endpoint,Id=*");

        Set<ObjectInstance> names = queryNames(query, null);
        List<ManagedEndpointMBean> answer = new ArrayList<ManagedEndpointMBean>();
        for (ObjectInstance on : names) {
            ManagedEndpointMBean component = (ManagedEndpointMBean) newProxyInstance(on.getObjectName(), ManagedEndpointMBean.class, true);
            answer.add(component);
        }
        return answer;
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.nmr.management.ManagedEndpointMBean

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.