Remove deprecated controller.sal.core.api interfaces
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / AbstractProvider.java
diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/AbstractProvider.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/AbstractProvider.java
deleted file mode 100644 (file)
index 5c5abe2..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.controller.sal.core.api;
-
-import java.util.Collection;
-import java.util.Collections;
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-import org.osgi.framework.ServiceReference;
-import org.osgi.util.tracker.ServiceTracker;
-import org.osgi.util.tracker.ServiceTrackerCustomizer;
-
-/**
- * Deprecated.
- *
- * @deprecated Use blueprint instead for code wiring.
- */
-@Deprecated
-public abstract class AbstractProvider implements BundleActivator, Provider,ServiceTrackerCustomizer<Broker, Broker> {
-
-    private Broker broker;
-    private BundleContext context;
-    private ServiceTracker<Broker, Broker> tracker;
-
-    @Override
-    public Collection<ProviderFunctionality> getProviderFunctionality() {
-        return Collections.emptySet();
-    }
-
-    @Override
-    public final void start(final BundleContext bundleContext) throws Exception {
-        this.context = bundleContext;
-        this.startImpl(bundleContext);
-        tracker = new ServiceTracker<>(bundleContext, Broker.class, this);
-        tracker.open();
-    }
-
-    protected void startImpl(final BundleContext bundleContext) {
-        // NOOP
-    }
-
-    protected void stopImpl(final BundleContext bundleContext) {
-        // NOOP
-    }
-
-    @Override
-    public final void stop(final BundleContext bundleContext) throws Exception {
-        broker = null;
-
-        if (tracker != null) {
-            tracker.close();
-        }
-
-        tracker = null;
-        stopImpl(bundleContext);
-    }
-
-    @Override
-    public Broker addingService(final ServiceReference<Broker> reference) {
-        if (broker == null && context != null) {
-            broker = context.getService(reference);
-            broker.registerProvider(this, context);
-            return broker;
-        }
-
-        return null;
-    }
-
-    @Override
-    public void modifiedService(final ServiceReference<Broker> reference, final Broker service) {
-        // NOOP
-    }
-
-    @Override
-    public void removedService(final ServiceReference<Broker> reference, final Broker service) {
-        stopImpl(context);
-    }
-}