commit | facf286f9c307cfd8e3f36a624b66b5761587b84 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Thu Aug 03 11:58:29 2017 -0700 |
committer | Ray Milkey <ray@opennetworking.org> | Sun Aug 06 16:38:19 2017 -0700 |
tree | e8ccfd30cb807ca95294f9e7894476c9f4d93fd5 | |
parent | a028a2c61c696d33c81e4fc4e12a9e8d9e6c5091 [diff] |
ONOS-6886 Move interface classes from incubator to core Change-Id: Iaae4d98279e4b77fc3f0b5a63d547921f93aeb46
diff --git a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingConfiguration.java b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingConfiguration.java index d91c7e4..b6145ad 100644 --- a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingConfiguration.java +++ b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingConfiguration.java
@@ -33,7 +33,7 @@ import org.onlab.packet.MacAddress; import org.onosproject.core.ApplicationId; import org.onosproject.core.CoreService; -import org.onosproject.incubator.net.intf.InterfaceService; +import org.onosproject.net.intf.InterfaceService; import org.onosproject.net.ConnectPoint; import org.onosproject.net.config.ConfigFactory; import org.onosproject.net.config.NetworkConfigEvent;
diff --git a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingFib.java b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingFib.java index ee0ca7f..9c2b2b2 100644 --- a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingFib.java +++ b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/ReactiveRoutingFib.java
@@ -24,8 +24,8 @@ import org.onlab.packet.MacAddress; import org.onlab.packet.VlanId; import org.onosproject.core.ApplicationId; -import org.onosproject.incubator.net.intf.Interface; -import org.onosproject.incubator.net.intf.InterfaceService; +import org.onosproject.net.intf.Interface; +import org.onosproject.net.intf.InterfaceService; import org.onosproject.intentsync.IntentSynchronizationService; import org.onosproject.net.ConnectPoint; import org.onosproject.net.Host;
diff --git a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/SdnIpReactiveRouting.java b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/SdnIpReactiveRouting.java index 6554f94..38917ed 100644 --- a/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/SdnIpReactiveRouting.java +++ b/apps/reactive-routing/src/main/java/org/onosproject/reactive/routing/SdnIpReactiveRouting.java
@@ -31,8 +31,8 @@ import org.onlab.packet.MacAddress; import org.onosproject.core.ApplicationId; import org.onosproject.core.CoreService; -import org.onosproject.incubator.net.intf.Interface; -import org.onosproject.incubator.net.intf.InterfaceService; +import org.onosproject.net.intf.Interface; +import org.onosproject.net.intf.InterfaceService; import org.onosproject.incubator.net.routing.Route; import org.onosproject.incubator.net.routing.RouteService; import org.onosproject.net.ConnectPoint;