Update project structure to org.onap.aaf
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / user / ListApprovals.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/user/ListApprovals.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/user/ListApprovals.java
new file mode 100644 (file)
index 0000000..e478d20
--- /dev/null
@@ -0,0 +1,104 @@
+/*******************************************************************************\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.user;\r
+\r
+import org.onap.aaf.cmd.AAFcli;\r
+import org.onap.aaf.cmd.Cmd;\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
+import aaf.v2_0.Approvals;\r
+\r
+/**\r
+ * \r
+ *\r
+ */\r
+public class ListApprovals extends Cmd {\r
+       private static final String HEADER = "List Approvals"; \r
+       private final static String[] options = {"user","approver","ticket"};\r
+       public ListApprovals(List parent) {\r
+               super(parent,"approvals", \r
+                               new Param(optionsToString(options),true),\r
+                               new Param("value",true)); \r
+       }\r
+\r
+       @Override\r
+       public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
+               int idx = _idx;\r
+               final String type = args[idx++];\r
+               int option = whichOption(options,type);\r
+               String value = args[idx++];\r
+               final String fullValue;\r
+               if (option != 2) {\r
+                       String realm = getOrgRealm();\r
+                       fullValue = (value.indexOf('@')<0 && realm != null)?value +'@'+realm:value;\r
+               } else {\r
+                   fullValue = value;\r
+               }\r
+               return same(new Retryable<Integer>() {\r
+                       @Override\r
+                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
+                               Future<Approvals> fp = client.read(\r
+                                               "/authz/approval/"+type+'/'+fullValue, \r
+                                               getDF(Approvals.class)\r
+                                               );\r
+                               if(fp.get(AAFcli.timeout())) {\r
+                                       ((List)parent).report(fp.value,HEADER + " by " + type,fullValue);\r
+                                       if(fp.code()==404) {\r
+                                           return 200;\r
+                                       }\r
+                               } else {\r
+                                       error(fp);\r
+                               }\r
+                               return fp.code();\r
+                       }\r
+               });\r
+       }\r
+\r
+       @Override\r
+       public void detailedHelp(int _indent, StringBuilder sb) {\r
+               int indent = _indent;\r
+               detailLine(sb,indent,HEADER);\r
+               indent+=2;\r
+               detailLine(sb,indent,"Approvals are used when the Requestor does not have the rights");\r
+               detailLine(sb,indent,"to perform the action required.  Approvers are those listed as");\r
+               detailLine(sb,indent,"responsible for Namespace associated with the request, and those");\r
+               detailLine(sb,indent,"required by the Company by Policy.  This may be, for instance");\r
+               detailLine(sb,indent,"the supervisor of the requestor");\r
+               sb.append('\n');\r
+               detailLine(sb,indent,"Delegates can be listed by User, Approver or Ticket.");\r
+               indent-=2;\r
+               api(sb,indent,HttpMethods.GET,"authz/approval/user/<value>",Approvals.class,true);\r
+               api(sb,indent,HttpMethods.GET,"authz/approval/approver/<value>",Approvals.class,false);\r
+               api(sb,indent,HttpMethods.GET,"authz/approval/ticket/<value>",Approvals.class,false);\r
+       }\r
+\r
+\r
+}\r