Fix findbugs violations in samples
[openflowplugin.git] / samples / learning-switch / src / main / java / org / opendaylight / openflowplugin / learningswitch / LearningSwitchHandler.java
index 48689701d10533e2dc2e6725dbda19b521b2b532..0584e12c16b74acf35d1da54334f61c03d0b13f9 100644 (file)
@@ -8,7 +8,6 @@
 package org.opendaylight.openflowplugin.learningswitch;
 
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.PacketProcessingService;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
 public interface LearningSwitchHandler {
@@ -19,25 +18,4 @@ public interface LearningSwitchHandler {
      * @param tablePath the table path
      */
     void onSwitchAppeared(InstanceIdentifier<Table> tablePath);
-
-    /**
-     * Sets the PacketProcessingService.
-     *
-     * @param packetProcessingService the packetProcessingService to set
-     */
-    void setPacketProcessingService(PacketProcessingService packetProcessingService);
-
-   /**
-    * Sets the data store accessor.
-    *
-    * @param dataStoreAccessor the dataStoreAccessor to set
-    */
-    void setDataStoreAccessor(FlowCommitWrapper dataStoreAccessor);
-
-   /**
-    * Sets the DataTreeChangeListener registration publisher.
-    *
-    * @param registrationPublisher the registrationPublisher to set
-    */
-    void setRegistrationPublisher(DataTreeChangeListenerRegistrationHolder registrationPublisher);
 }