Quick fix for broken build
Caused by change 9240 Change-Id: I854ba9d9b69fbe38ff2a6b52d3d03928b2ad08bc
Showing
1 changed file
with
6 additions
and
0 deletions
... | @@ -18,6 +18,7 @@ package org.onosproject.pce.pceservice; | ... | @@ -18,6 +18,7 @@ package org.onosproject.pce.pceservice; |
18 | import org.onosproject.net.resource.ResourceConsumer; | 18 | import org.onosproject.net.resource.ResourceConsumer; |
19 | 19 | ||
20 | import com.google.common.annotations.Beta; | 20 | import com.google.common.annotations.Beta; |
21 | +import org.onosproject.net.resource.ResourceConsumerId; | ||
21 | 22 | ||
22 | /** | 23 | /** |
23 | * Tunnel resource consumer identifier suitable to be used as a consumer id for | 24 | * Tunnel resource consumer identifier suitable to be used as a consumer id for |
... | @@ -87,4 +88,9 @@ public final class TunnelConsumerId implements ResourceConsumer { | ... | @@ -87,4 +88,9 @@ public final class TunnelConsumerId implements ResourceConsumer { |
87 | return "0x" + Long.toHexString(value); | 88 | return "0x" + Long.toHexString(value); |
88 | } | 89 | } |
89 | 90 | ||
91 | + @Override | ||
92 | + public ResourceConsumerId consumerId() { | ||
93 | + // TODO | ||
94 | + return null; | ||
95 | + } | ||
90 | } | 96 | } | ... | ... |
-
Please register or login to post a comment