Pull out ContinuousResourceAllocation from ConsistentResourceStore

Change-Id: I30eeb84f3e3237aa191d41896b60da8f789ea8ea
diff --git a/core/store/dist/src/main/java/org/onosproject/store/resource/impl/ResourceStoreUtil.java b/core/store/dist/src/main/java/org/onosproject/store/resource/impl/ResourceStoreUtil.java
index 3b2c324..55d5c12 100644
--- a/core/store/dist/src/main/java/org/onosproject/store/resource/impl/ResourceStoreUtil.java
+++ b/core/store/dist/src/main/java/org/onosproject/store/resource/impl/ResourceStoreUtil.java
@@ -33,7 +33,7 @@
     // computational complexity: O(n) where n is the number of allocations
     static boolean hasEnoughResource(ContinuousResource original,
                                      ContinuousResource request,
-                                     ConsistentResourceStore.ContinuousResourceAllocation allocation) {
+                                     ContinuousResourceAllocation allocation) {
         if (allocation == null) {
             return request.value() <= original.value();
         }