Showing
1 changed file
with
3 additions
and
3 deletions
1 | package org.onlab.onos.ifwd; | 1 | package org.onlab.onos.ifwd; |
2 | 2 | ||
3 | +import static org.slf4j.LoggerFactory.getLogger; | ||
4 | + | ||
3 | import org.apache.felix.scr.annotations.Activate; | 5 | import org.apache.felix.scr.annotations.Activate; |
4 | import org.apache.felix.scr.annotations.Component; | 6 | import org.apache.felix.scr.annotations.Component; |
5 | import org.apache.felix.scr.annotations.Deactivate; | 7 | import org.apache.felix.scr.annotations.Deactivate; |
... | @@ -26,8 +28,6 @@ import org.onlab.onos.net.topology.TopologyService; | ... | @@ -26,8 +28,6 @@ import org.onlab.onos.net.topology.TopologyService; |
26 | import org.onlab.packet.Ethernet; | 28 | import org.onlab.packet.Ethernet; |
27 | import org.slf4j.Logger; | 29 | import org.slf4j.Logger; |
28 | 30 | ||
29 | -import static org.slf4j.LoggerFactory.getLogger; | ||
30 | - | ||
31 | /** | 31 | /** |
32 | * WORK-IN-PROGRESS: Sample reactive forwarding application using intent framework. | 32 | * WORK-IN-PROGRESS: Sample reactive forwarding application using intent framework. |
33 | */ | 33 | */ |
... | @@ -50,7 +50,7 @@ public class IntentReactiveForwarding { | ... | @@ -50,7 +50,7 @@ public class IntentReactiveForwarding { |
50 | 50 | ||
51 | private ReactivePacketProcessor processor = new ReactivePacketProcessor(); | 51 | private ReactivePacketProcessor processor = new ReactivePacketProcessor(); |
52 | 52 | ||
53 | - private static long intentId = 1; | 53 | + private static long intentId = 0x123000; |
54 | 54 | ||
55 | @Activate | 55 | @Activate |
56 | public void activate() { | 56 | public void activate() { | ... | ... |
-
Please register or login to post a comment