Showing
2 changed files
with
3 additions
and
4 deletions
... | @@ -10,7 +10,7 @@ import org.onlab.onos.cli.AbstractShellCommand; | ... | @@ -10,7 +10,7 @@ import org.onlab.onos.cli.AbstractShellCommand; |
10 | * Test Netty client performance. | 10 | * Test Netty client performance. |
11 | */ | 11 | */ |
12 | @Command(scope = "onos", name = "simple-netty-client", | 12 | @Command(scope = "onos", name = "simple-netty-client", |
13 | - description = "Starts the simple Netty client") | 13 | + description = "Starts simple Netty client") |
14 | public class SimpleNettyClientCommand extends AbstractShellCommand { | 14 | public class SimpleNettyClientCommand extends AbstractShellCommand { |
15 | 15 | ||
16 | //FIXME: replace these arguments with proper ones needed for the test. | 16 | //FIXME: replace these arguments with proper ones needed for the test. | ... | ... |
... | @@ -10,15 +10,14 @@ import org.onlab.onos.cli.AbstractShellCommand; | ... | @@ -10,15 +10,14 @@ import org.onlab.onos.cli.AbstractShellCommand; |
10 | * Starts the Simple Netty server. | 10 | * Starts the Simple Netty server. |
11 | */ | 11 | */ |
12 | @Command(scope = "onos", name = "simple-netty-server", | 12 | @Command(scope = "onos", name = "simple-netty-server", |
13 | - description = "Starts the simple netty server") | 13 | + description = "Starts simple Netty server") |
14 | public class SimpleNettyServerCommand extends AbstractShellCommand { | 14 | public class SimpleNettyServerCommand extends AbstractShellCommand { |
15 | 15 | ||
16 | //FIXME: Replace these with parameters for | 16 | //FIXME: Replace these with parameters for |
17 | - @Argument(index = 0, name = "port", description = "Port to listen", | 17 | + @Argument(index = 0, name = "port", description = "listen port", |
18 | required = false, multiValued = false) | 18 | required = false, multiValued = false) |
19 | String port = "8081"; | 19 | String port = "8081"; |
20 | 20 | ||
21 | - | ||
22 | @Override | 21 | @Override |
23 | protected void execute() { | 22 | protected void execute() { |
24 | try { | 23 | try { | ... | ... |
-
Please register or login to post a comment