Package org.apache.aries.jmx.test.bundlea.impl

Examples of org.apache.aries.jmx.test.bundlea.impl.A


        tracker = new ServiceTracker(context, InterfaceB.class.getName(), null);
        tracker.open();
       
        Dictionary<String, Object> props = new Hashtable<String, Object>();
        props.put(Constants.SERVICE_PID, "org.apache.aries.jmx.test.ServiceA");
        registration = context.registerService(new String[] { InterfaceA.class.getName(), ManagedService.class.getName() }, new A(tracker), props);
       
    }
View Full Code Here


        tracker = new ServiceTracker(context, InterfaceB.class.getName(), null);
        tracker.open();
       
        Dictionary<String, Object> props = new Hashtable<String, Object>();
        props.put(Constants.SERVICE_PID, "org.apache.aries.jmx.test.ServiceA");
        registration = context.registerService(new String[] { InterfaceA.class.getName(), ManagedService.class.getName() }, new A(tracker), props);
       
    }
View Full Code Here

TOP

Related Classes of org.apache.aries.jmx.test.bundlea.impl.A

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.