[EMU] Deprecate old LinkResourceService related commands.

Change-Id: I5224a61f65fbd6e6b0a48b1d9db180b7457ed2e9
diff --git a/cli/src/main/java/org/onosproject/cli/net/LinkResourceTestCommand.java b/cli/src/main/java/org/onosproject/cli/net/LinkResourceTestCommand.java
index a1a7692..f372f9c 100644
--- a/cli/src/main/java/org/onosproject/cli/net/LinkResourceTestCommand.java
+++ b/cli/src/main/java/org/onosproject/cli/net/LinkResourceTestCommand.java
@@ -35,9 +35,13 @@
 
 /**
  * Commands to test out LinkResourceManager directly.
+ *
+ * @deprecated in Emu release
  */
+@Deprecated
 @Command(scope = "onos", name = "resource-request",
-        description = "request or remove resources")
+        description = "request or remove resources"
+                    + "[Using deprecated LinkResourceService]")
 public class LinkResourceTestCommand extends AbstractShellCommand {
 
     // default is bandwidth.
diff --git a/cli/src/main/java/org/onosproject/cli/net/ResourceAllocationsCommand.java b/cli/src/main/java/org/onosproject/cli/net/ResourceAllocationsCommand.java
index 9a18bfc..968781f 100644
--- a/cli/src/main/java/org/onosproject/cli/net/ResourceAllocationsCommand.java
+++ b/cli/src/main/java/org/onosproject/cli/net/ResourceAllocationsCommand.java
@@ -25,9 +25,13 @@
 
 /**
  * Lists allocations by link. Lists all allocations if link is unspecified.
+ *
+ * @deprecated in Emu release
  */
+@Deprecated
 @Command(scope = "onos", name = "resource-allocations",
-        description = "Lists allocations by link. Lists all allocations if link is unspecified.")
+        description = "Lists allocations by link. Lists all allocations if link is unspecified."
+                    + "[Using deprecated LinkResourceService]")
 public class ResourceAllocationsCommand extends AbstractShellCommand {
 
     private static final String FMT = "src=%s/%s, dst=%s/%s, type=%s%s";
diff --git a/cli/src/main/java/org/onosproject/cli/net/ResourceAvailableCommand.java b/cli/src/main/java/org/onosproject/cli/net/ResourceAvailableCommand.java
index ab0d395..007eb12 100644
--- a/cli/src/main/java/org/onosproject/cli/net/ResourceAvailableCommand.java
+++ b/cli/src/main/java/org/onosproject/cli/net/ResourceAvailableCommand.java
@@ -26,9 +26,13 @@
 
 /**
  * Lists allocations by link.
+ *
+ * @deprecated in Emu release
  */
+@Deprecated
 @Command(scope = "onos", name = "resource-available",
-         description = "Lists available resources by link")
+         description = "Lists available resources by link"
+                     + "[Using deprecated LinkResourceService]")
 public class ResourceAvailableCommand extends AbstractShellCommand {
 
     private static final String FMT = "src=%s/%s, dst=%s/%s, type=%s%s";