provider renamed - uniformed prefix 93/19093/2
authorMartin Bobak <mbobak@cisco.com>
Sat, 25 Apr 2015 10:10:11 +0000 (12:10 +0200)
committerMartin Bobak <mbobak@cisco.com>
Sun, 26 Apr 2015 08:23:35 +0000 (10:23 +0200)
Change-Id: I4389e31005272237933d4099f1068d097c347719
Signed-off-by: Martin Bobak <mbobak@cisco.com>
openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/OpenFlowPluginTimer.java [moved from openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/OpenflowPluginTimer.java with 92% similarity]
openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceContext.java

similarity index 92%
rename from openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/OpenflowPluginTimer.java
rename to openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/OpenFlowPluginTimer.java
index 4b0cfeaec4be9cc787f6dd2864f52963aa21e6c9..dc1677a74878e8bc5f16207ad58fa36a2d505834 100644 (file)
@@ -13,7 +13,7 @@ import io.netty.util.HashedWheelTimer;
 /**
  * Created by Martin Bobak &lt;mbobak@cisco.com&gt; on 4.4.2015.
  */
-public interface OpenflowPluginTimer {
+public interface OpenFlowPluginTimer {
 
     HashedWheelTimer getTimer();
 }
index 956569b21fb14d77ed83916e1bd88db8a780f3f2..6f4bad3e38032cba0ac766e7be212a9f84dd68a8 100644 (file)
@@ -13,7 +13,7 @@ import java.math.BigInteger;
 import org.opendaylight.controller.md.sal.binding.api.ReadTransaction;
 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
-import org.opendaylight.openflowplugin.api.openflow.OpenflowPluginTimer;
+import org.opendaylight.openflowplugin.api.openflow.OpenFlowPluginTimer;
 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextClosedHandler;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceDisconnectedHandler;
@@ -26,7 +26,6 @@ import org.opendaylight.openflowplugin.api.openflow.registry.group.DeviceGroupRe
 import org.opendaylight.openflowplugin.api.openflow.registry.meter.DeviceMeterRegistry;
 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
 import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.TableFeatures;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
@@ -48,7 +47,7 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
  * Created by Martin Bobak &lt;mbobak@cisco.com&gt; on 25.2.2015.
  */
 public interface DeviceContext extends AutoCloseable,
-        OpenflowPluginTimer,
+        OpenFlowPluginTimer,
         MessageHandler,
         TranslatorLibrarian,
         OutstandingMessageExtractor,