Package org.apache.cxf.management

Examples of org.apache.cxf.management.InstrumentationManagerImpl


    public void testManagedSpringBus() {
        SpringBusFactory factory = new SpringBusFactory();
        Bus bus = factory.createBus("org/apache/cxf/systest/management/managed-spring.xml", true);
        InstrumentationManager im = bus.getExtension(InstrumentationManager.class);
        assertNotNull(im);
        InstrumentationManagerImpl imi = (InstrumentationManagerImpl)im;
        InstrumentationType i = imi.getInstrumentation();
        assertNotNull(i);

        bus.shutdown(true);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.management.InstrumentationManagerImpl

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.