Sho SHIMIZU
Committed by Ray Milkey

Get rid of super type of IntentId

IntentId is no longer treated as BatchOperationTarget

Change-Id: Icf63eb8071113b71146604a740f82cf3eadeef95
...@@ -15,13 +15,11 @@ ...@@ -15,13 +15,11 @@
15 */ 15 */
16 package org.onosproject.net.intent; 16 package org.onosproject.net.intent;
17 17
18 -import org.onosproject.net.flow.BatchOperationTarget;
19 -
20 /** 18 /**
21 * Intent identifier suitable as an external key. 19 * Intent identifier suitable as an external key.
22 * <p>This class is immutable.</p> 20 * <p>This class is immutable.</p>
23 */ 21 */
24 -public final class IntentId implements BatchOperationTarget { 22 +public final class IntentId {
25 23
26 private final long value; 24 private final long value;
27 25
......