Make LinkResourceService deprecated

Change-Id: Iff92b25f51b9b1d8da4e8ed869afc51e5048d978
diff --git a/core/api/src/main/java/org/onosproject/net/resource/link/LinkResourceService.java b/core/api/src/main/java/org/onosproject/net/resource/link/LinkResourceService.java
index 6dc04df..71ea7e1 100644
--- a/core/api/src/main/java/org/onosproject/net/resource/link/LinkResourceService.java
+++ b/core/api/src/main/java/org/onosproject/net/resource/link/LinkResourceService.java
@@ -22,7 +22,10 @@
 
 /**
  * Service for providing link resource allocation.
+ *
+ * @deprecated in Emu Release
  */
+@Deprecated
 public interface LinkResourceService
     extends ListenerService<LinkResourceEvent, LinkResourceListener> {
 
@@ -31,14 +34,18 @@
      *
      * @param req resources to be allocated
      * @return allocated resources
+     * @deprecated in Emu Release
      */
+    @Deprecated
     LinkResourceAllocations requestResources(LinkResourceRequest req);
 
     /**
      * Releases resources.
      *
      * @param allocations resources to be released
+     * @deprecated in Emu Release
      */
+    @Deprecated
     void releaseResources(LinkResourceAllocations allocations);
 
     /**
@@ -47,7 +54,9 @@
      * @param req            updated resource request
      * @param oldAllocations old resource allocations
      * @return new resource allocations
+     * @deprecated in Emu Release
      */
+    @Deprecated
     LinkResourceAllocations updateResources(LinkResourceRequest req,
                                             LinkResourceAllocations oldAllocations);
 
@@ -55,7 +64,9 @@
      * Returns all allocated resources.
      *
      * @return allocated resources
+     * @deprecated in Emu Release
      */
+    @Deprecated
     Iterable<LinkResourceAllocations> getAllocations();
 
     /**
@@ -63,7 +74,9 @@
      *
      * @param link a target link
      * @return allocated resources
+     * @deprecated in Emu Release
      */
+    @Deprecated
     Iterable<LinkResourceAllocations> getAllocations(Link link);
 
     /**
@@ -71,7 +84,9 @@
      *
      * @param intentId the target Intent's id
      * @return allocated resources for Intent
+     * @deprecated in Emu Release
      */
+    @Deprecated
     LinkResourceAllocations getAllocations(IntentId intentId);
 
     /**
@@ -79,7 +94,9 @@
      *
      * @param link a target link
      * @return available resources for the target link
+     * @deprecated in Emu Release
      */
+    @Deprecated
     Iterable<ResourceRequest> getAvailableResources(Link link);
 
     /**
@@ -88,7 +105,9 @@
      * @param link        a target link
      * @param allocations allocations to be included as available
      * @return available resources for the target link
+     * @deprecated in Emu Release
      */
+    @Deprecated
     Iterable<ResourceRequest> getAvailableResources(Link link,
                                                     LinkResourceAllocations allocations);