Finished implementation of GossipIntentStore based on new API and semantics.

Change-Id: I1a71d075e5d34ab7b9f7c2533d389235d6da1d9a
diff --git a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/PartitionService.java b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/PartitionService.java
index 1062b65..eaeabab1 100644
--- a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/PartitionService.java
+++ b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/PartitionService.java
@@ -15,6 +15,8 @@
  */
 package org.onosproject.store.intent.impl;
 
+import org.onosproject.net.intent.Key;
+
 /**
  * Service for interacting with the partition-to-instance assignments.
  */
@@ -27,7 +29,7 @@
      * @param intentKey intent key to query
      * @return true if the key is owned by this instance, otherwise false
      */
-    boolean isMine(String intentKey);
+    boolean isMine(Key intentKey);
 
     // TODO add API for rebalancing partitions
 }