Skip to content

Commit

Permalink
Remove the deprecated loading of the single workqueue config format.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/cxf/trunk@1555935 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
dkulp committed Jan 6, 2014
1 parent b34e1da commit 68b0308
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 136 deletions.
9 changes: 1 addition & 8 deletions core/src/main/java/org/apache/cxf/bus/osgi/CXFActivator.java
Expand Up @@ -33,7 +33,6 @@
import org.osgi.framework.Constants;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.cm.ConfigurationAdmin;
import org.osgi.service.cm.ManagedService;
import org.osgi.service.cm.ManagedServiceFactory;
import org.osgi.util.tracker.ServiceTracker;

Expand All @@ -54,7 +53,6 @@ public class CXFActivator implements BundleActivator {
private ServiceRegistration wqSingleConfigRegistratin;

/** {@inheritDoc}*/
@SuppressWarnings("deprecation")
public void start(BundleContext context) throws Exception {
cxfBundleListener = new CXFExtensionBundleListener(context.getBundle().getBundleId());
context.addBundleListener(cxfBundleListener);
Expand All @@ -66,12 +64,7 @@ public void start(BundleContext context) throws Exception {
workQueueServiceRegistration = registerManagedServiceFactory(context, ManagedServiceFactory.class,
workQueues,
ManagedWorkQueueList.FACTORY_PID);

WorkQueueSingleConfig wqSingleConfig = new WorkQueueSingleConfig(workQueues);
wqSingleConfigRegistratin = registerManagedServiceFactory(context, ManagedService.class,
wqSingleConfig,
WorkQueueSingleConfig.SERVICE_PID);


extensions = new ArrayList<Extension>();
extensions.add(createOsgiBusListenerExtension(context));
extensions.add(createManagedWorkQueueListExtension(workQueues));
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 68b0308

Please sign in to comment.