Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / mgmt / SessClear.java
index cfd2fa8..a52d5dc 100644 (file)
@@ -39,45 +39,45 @@ import org.onap.aaf.misc.env.APIException;
  *
  */
 public class SessClear extends Cmd {
-       public SessClear(Session parent) {
-               super(parent,"clear",
-                               new Param("machine",true));
-       }
+    public SessClear(Session parent) {
+        super(parent,"clear",
+                new Param("machine",true));
+    }
 
-       @Override
-       public int _exec(int idx, String ... args) throws CadiException, APIException, LocatorException {
-               int rv=409;
-               String machine = args[idx++];
-               rv = oneOf(new Retryable<Integer>() {
-                       @Override
-                       public Integer code(Rcli<?> client) throws APIException, CadiException {
-                               int rv = 409;
-                               Future<Void> fp = client.delete(
-                                               "/mgmt/dbsession", 
-                                               Void.class
-                                               );
-                               if(fp.get(AAFcli.timeout())) {
-                                       pw().println("Cleared DBSession on " + client);
-                                       rv=200;
-                               } else {
-                                       if(rv==409)rv = fp.code();
-                                       error(fp);
-                               }
-                               return rv;
-                       }
-               },machine);
-               return rv;
-       }
+    @Override
+    public int _exec(int idx, String ... args) throws CadiException, APIException, LocatorException {
+        int rv=409;
+        String machine = args[idx++];
+        rv = oneOf(new Retryable<Integer>() {
+            @Override
+            public Integer code(Rcli<?> client) throws APIException, CadiException {
+                int rv = 409;
+                Future<Void> fp = client.delete(
+                        "/mgmt/dbsession", 
+                        Void.class
+                        );
+                if(fp.get(AAFcli.timeout())) {
+                    pw().println("Cleared DBSession on " + client);
+                    rv=200;
+                } else {
+                    if(rv==409)rv = fp.code();
+                    error(fp);
+                }
+                return rv;
+            }
+        },machine);
+        return rv;
+    }
 
-       @Override
-       public void detailedHelp(int _indent, StringBuilder sb) {
-               int indent = _indent;
-               detailLine(sb,indent,"Clear the cache for certain tables");
-               indent+=2;
-               detailLine(sb,indent,"name        - name of table or 'all'");
-               detailLine(sb,indent+14,"Must have admin rights to " + Define.ROOT_NS() + '\'');
-               indent-=2;
-               api(sb,indent,HttpMethods.DELETE,"mgmt/cache/:name",Void.class,true);
-       }
+    @Override
+    public void detailedHelp(int _indent, StringBuilder sb) {
+            int indent = _indent;
+        detailLine(sb,indent,"Clear the cache for certain tables");
+        indent+=2;
+        detailLine(sb,indent,"name        - name of table or 'all'");
+        detailLine(sb,indent+14,"Must have admin rights to " + Define.ROOT_NS() + '\'');
+        indent-=2;
+        api(sb,indent,HttpMethods.DELETE,"mgmt/cache/:name",Void.class,true);
+    }
 
 }