use of org.opennms.vaadin.extender.internal.extender.ApplicationFactoryServiceTracker in project opennms by OpenNMS.
the class Activator method start.
public void start(BundleContext context) throws Exception {
bundleContext = context;
createAndRegisterVaadinResourceServlet();
sessionListenerRepositoryService = bundleContext.registerService(SessionListenerRepository.class.getName(), new SessionListenerRepository(bundleContext), null);
bundleTracker = new PaxVaadinBundleTracker(bundleContext);
applicationFactoryServiceTracker = new ApplicationFactoryServiceTracker(bundleContext);
bundleTracker.open();
applicationFactoryServiceTracker.open();
}
Aggregations