HIGUCHI Yuta
Committed by Gerrit Code Review

[EMU] Deprecate old LinkResourceService related commands.

Change-Id: I5224a61f65fbd6e6b0a48b1d9db180b7457ed2e9
......@@ -35,9 +35,13 @@ import java.util.Set;
/**
* 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.
......
......@@ -25,9 +25,13 @@ import org.onosproject.net.resource.link.LinkResourceService;
/**
* 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";
......
......@@ -26,9 +26,13 @@ import org.onosproject.net.resource.ResourceRequest;
/**
* 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";
......