Update project structure to org.onap.aaf
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / perm / ListByRole.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/perm/ListByRole.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/perm/ListByRole.java
new file mode 100644 (file)
index 0000000..8f387c0
--- /dev/null
@@ -0,0 +1,73 @@
+/*******************************************************************************\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.perm;\r
+\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.inno.env.APIException;\r
+\r
+import aaf.v2_0.Perms;\r
+\r
+/**\r
+ * Return Perms by Role\r
+ * \r
+ *\r
+ */\r
+public class ListByRole extends Cmd {\r
+       private static final String HEADER = "List Perms by Role ";\r
+       \r
+       public ListByRole(List parent) {\r
+               super(parent,"role", \r
+                               new Param("name",true)); \r
+       }\r
+\r
+       public int _exec(final int idx, final String ... args) throws CadiException, APIException, LocatorException {\r
+               final String role=args[idx];\r
+\r
+               return same(((List)parent).new ListPerms() {\r
+                       @Override\r
+                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
+\r
+                               Future<Perms> fp = client.read(\r
+                                               "/authz/perms/role/"+role, \r
+                                               getDF(Perms.class)\r
+                                               );\r
+                               return list(fp,client, HEADER, role);\r
+                       }\r
+               });\r
+       }\r
+       \r
+       @Override\r
+       public void detailedHelp(int indent, StringBuilder sb) {\r
+               detailLine(sb,indent,HEADER);\r
+               api(sb,indent,HttpMethods.GET,"authz/perms/role/<role>",Perms.class,true);\r
+       }\r
+\r
+\r
+}\r