Avoid using fully qualified name

Change-Id: I273ccfe4bded393ec17128f485842c458cbffac4
diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalConnectivityIntentCompiler.java b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalConnectivityIntentCompiler.java
index 3becdb8..690f3c2 100644
--- a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalConnectivityIntentCompiler.java
+++ b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalConnectivityIntentCompiler.java
@@ -111,8 +111,7 @@
         // Reserve OCh ports
         Resource srcPortResource = Resource.discrete(src.deviceId(), src.port()).resource();
         Resource dstPortResource = Resource.discrete(dst.deviceId(), dst.port()).resource();
-        List<org.onosproject.net.newresource.ResourceAllocation> allocation =
-                resourceService.allocate(intent.id(), srcPortResource, dstPortResource);
+        List<ResourceAllocation> allocation = resourceService.allocate(intent.id(), srcPortResource, dstPortResource);
         if (allocation.isEmpty()) {
             throw new IntentCompilationException("Unable to reserve ports for intent " + intent);
         }