Fix checkstyle violations in sal-binding-api
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / AbstractBindingAwareConsumer.java
index 3c95ed8e1cdb3a15132caebc368272a8281f2c16..031c157026e369f0cdc224d4677062d6cd30ea94 100644 (file)
@@ -1,28 +1,19 @@
+/*
+ * 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.binding.api;
 
-import org.osgi.framework.BundleActivator;
 import org.osgi.framework.BundleContext;
-import org.osgi.framework.ServiceReference;
-
-public abstract class AbstractBindingAwareConsumer implements BindingAwareConsumer,BundleActivator {
 
+@Deprecated
+public abstract class AbstractBindingAwareConsumer extends AbstractBrokerAwareActivator
+        implements BindingAwareConsumer {
     @Override
-    public final void start(BundleContext context) throws Exception {
-        ServiceReference<BindingAwareBroker> brokerRef = context.getServiceReference(BindingAwareBroker.class);
-        BindingAwareBroker broker = context.getService(brokerRef);
+    protected final void onBrokerAvailable(BindingAwareBroker broker, BundleContext context) {
         broker.registerConsumer(this, context);
-        startImpl(context);
-    }
-
-    @Deprecated
-    protected void startImpl(BundleContext context) {
-        
     }
-    
-    @Override
-    public final  void stop(BundleContext context) throws Exception {
-        // TODO Auto-generated method stub
-        
-    }
-
 }