[WIP] apps CLI changes for karaf upgrade

Change-Id: I283efc39c7d4f4b31344f1d2d0cdd2b98a60932d
diff --git a/apps/test/cluster-ha/src/main/java/org/onosproject/clusterha/cli/ClusterHATestCommand.java b/apps/test/cluster-ha/src/main/java/org/onosproject/clusterha/cli/ClusterHATestCommand.java
index 6422988..94e1c7e 100644
--- a/apps/test/cluster-ha/src/main/java/org/onosproject/clusterha/cli/ClusterHATestCommand.java
+++ b/apps/test/cluster-ha/src/main/java/org/onosproject/clusterha/cli/ClusterHATestCommand.java
@@ -16,8 +16,8 @@
 
 package org.onosproject.clusterha.cli;
 
-import org.apache.karaf.shell.commands.Argument;
-import org.apache.karaf.shell.commands.Command;
+import org.apache.karaf.shell.api.action.Argument;
+import org.apache.karaf.shell.api.action.Command;
 import org.onosproject.cli.AbstractShellCommand;
 import org.onosproject.clusterha.ClusterHATest;
 
@@ -45,7 +45,7 @@
     private static final String CONSTANT = new String(new char[COUNT]).replace("\0", STR);
 
     @Override
-    protected void execute() {
+    protected void doExecute() {
         ClusterHATest service = get(ClusterHATest.class);
         int iStartIdx = 0, iEndIdx = 0;
         long lInterOpDelay = 0L;