Add a private modifiers to command arguments in clustering-test-app
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / karaf-cli / src / main / java / org / opendaylight / clustering / it / karaf / cli / odl / mdsal / lowlevel / control / WriteTransactionsCommand.java
index 60288cdc196b9a43091822f43f2b6f210ef6aced..ad90f8733a8f326a653d2527b962c565e8f169e8 100644 (file)
@@ -25,13 +25,13 @@ public class WriteTransactionsCommand extends AbstractRpcAction {
     @Reference
     private RpcConsumerRegistry rpcService;
     @Argument(index = 0, name = "id", required = true)
-    String id;
+    private String id;
     @Argument(index = 1, name = "seconds", required = true)
-    long seconds;
+    private long seconds;
     @Argument(index = 2, name = "trasactions-per-second", required = true)
-    long transactionsPerSecond;
+    private long transactionsPerSecond;
     @Argument(index = 3, name = "chained-transations", required = true)
-    boolean chainedTransactions;
+    private boolean chainedTransactions;
 
     @Override
     protected ListenableFuture<? extends RpcResult<?>> invokeRpc() {