Showing
2 changed files
with
3 additions
and
1 deletions
| ... | @@ -13,6 +13,7 @@ import org.onlab.onos.cli.AbstractShellCommand; | ... | @@ -13,6 +13,7 @@ import org.onlab.onos.cli.AbstractShellCommand; |
| 13 | description = "Starts the simple Netty client") | 13 | description = "Starts the 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 | @Argument(index = 0, name = "serverIp", description = "Server IP address", | 17 | @Argument(index = 0, name = "serverIp", description = "Server IP address", |
| 17 | required = false, multiValued = false) | 18 | required = false, multiValued = false) |
| 18 | String serverIp = "127.0.0.1"; | 19 | String serverIp = "127.0.0.1"; | ... | ... |
| ... | @@ -9,10 +9,11 @@ import org.onlab.onos.cli.AbstractShellCommand; | ... | @@ -9,10 +9,11 @@ import org.onlab.onos.cli.AbstractShellCommand; |
| 9 | /** | 9 | /** |
| 10 | * Starts the Simple Netty server. | 10 | * Starts the Simple Netty server. |
| 11 | */ | 11 | */ |
| 12 | -@Command(scope = "onos", name = "test-netty-server", | 12 | +@Command(scope = "onos", name = "simple-netty-server", |
| 13 | description = "Starts the simple netty server") | 13 | description = "Starts the 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 | @Argument(index = 0, name = "serverIp", description = "Server IP address", | 17 | @Argument(index = 0, name = "serverIp", description = "Server IP address", |
| 17 | required = false, multiValued = false) | 18 | required = false, multiValued = false) |
| 18 | String serverIp = "127.0.0.1"; | 19 | String serverIp = "127.0.0.1"; | ... | ... |
-
Please register or login to post a comment