Update project structure to org.onap.aaf
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / mgmt / Log.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/mgmt/Log.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/mgmt/Log.java
new file mode 100644 (file)
index 0000000..5726d31
--- /dev/null
@@ -0,0 +1,111 @@
+/*******************************************************************************\r
+ * ============LICENSE_START====================================================\r
+ * * org.onap.aaf\r
+ * * ===========================================================================\r
+ * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
+ * * ===========================================================================\r
+ * * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * * you may not use this file except in compliance with the License.\r
+ * * You may obtain a copy of the License at\r
+ * * \r
+ *  *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * * \r
+ *  * Unless required by applicable law or agreed to in writing, software\r
+ * * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * * See the License for the specific language governing permissions and\r
+ * * limitations under the License.\r
+ * * ============LICENSE_END====================================================\r
+ * *\r
+ * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
+ * *\r
+ ******************************************************************************/\r
+package org.onap.aaf.cmd.mgmt;\r
+\r
+import org.onap.aaf.authz.common.Define;\r
+import org.onap.aaf.cmd.AAFcli;\r
+import org.onap.aaf.cmd.BaseCmd;\r
+import org.onap.aaf.cmd.Param;\r
+import org.onap.aaf.cssa.rserv.HttpMethods;\r
+\r
+import org.onap.aaf.cadi.CadiException;\r
+import org.onap.aaf.cadi.LocatorException;\r
+import org.onap.aaf.cadi.client.Future;\r
+import org.onap.aaf.cadi.client.Rcli;\r
+import org.onap.aaf.cadi.client.Retryable;\r
+import org.onap.aaf.inno.env.APIException;\r
+\r
+public class Log extends BaseCmd<Mgmt> {\r
+       private final static String[] options = {"add","del"};\r
+\r
+       public Log(Mgmt mgmt) throws APIException {\r
+               super(mgmt, "log",\r
+                               new Param(optionsToString(options),true),\r
+                               new Param("id[,id]*",true));\r
+       }\r
+       \r
+       @Override\r
+       public int _exec(int _idx, String ... args) throws CadiException, APIException, LocatorException {\r
+               int rv=409;\r
+               int idx = _idx;\r
+               final int option = whichOption(options, args[idx++]);\r
+\r
+               for(String name : args[idx++].split(COMMA)) {\r
+                       final String fname;\r
+                       if(name.indexOf("@")<0) {\r
+                               fname=name+'@'+ env.getProperty(AAFcli.AAF_DEFAULT_REALM);\r
+                       } else {\r
+                               fname = name;\r
+                       }\r
+                       \r
+                       \r
+\r
+                       rv = all(new Retryable<Integer>() {\r
+                               @Override\r
+                               public Integer code(Rcli<?> client) throws APIException, CadiException {\r
+                                       int rv = 409;\r
+                                       Future<Void> fp;\r
+                                       String str = "/mgmt/log/id/"+fname;\r
+                                       String msg;\r
+                                       switch(option) {\r
+                                               case 0: \r
+                                                       fp = client.create(str,Void.class);\r
+                                                       msg = "Added";\r
+                                                       break;\r
+                                               case 1:\r
+                                                       fp = client.delete(str,Void.class);\r
+                                                       msg = "Deleted";\r
+                                                       break;\r
+                                               default:\r
+                                                       fp = null;\r
+                                                       msg = "Ignored";\r
+                                       }\r
+                                                       \r
+                                       if(fp!=null) {\r
+                                               if(fp.get(AAFcli.timeout())) {\r
+                                                       pw().println(msg + " Special Log for " + fname + " on " + client);\r
+                                                       rv=200;\r
+                                               } else {\r
+                                                       if(rv==409)rv = fp.code();\r
+                                                       error(fp);\r
+                                               }\r
+                                               return rv;\r
+                                       }\r
+                                       return rv;\r
+                               }\r
+                       });\r
+               }\r
+               return rv;\r
+       }\r
+\r
+       @Override\r
+       public void detailedHelp(int _indent, StringBuilder sb) {\r
+               int indent = _indent;\r
+               detailLine(sb,indent,"Clear the cache for certain tables");\r
+               indent+=2;\r
+               detailLine(sb,indent,"name        - name of table or 'all'");\r
+               detailLine(sb,indent+14,"Must have admin rights to '" + Define.ROOT_NS + '\'');\r
+               indent-=2;\r
+               api(sb,indent,HttpMethods.DELETE,"mgmt/cache/:name",Void.class,true);\r
+       }\r
+}\r