Add INFO.yaml file
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / user / ListForRoles.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.cmd.user;\r
24 \r
25 import java.util.Collections;\r
26 import java.util.Comparator;\r
27 \r
28 import org.onap.aaf.cmd.AAFcli;\r
29 import org.onap.aaf.cmd.Cmd;\r
30 import org.onap.aaf.cmd.Param;\r
31 import org.onap.aaf.cssa.rserv.HttpMethods;\r
32 \r
33 import org.onap.aaf.cadi.CadiException;\r
34 import org.onap.aaf.cadi.LocatorException;\r
35 import org.onap.aaf.cadi.client.Future;\r
36 import org.onap.aaf.cadi.client.Rcli;\r
37 import org.onap.aaf.cadi.client.Retryable;\r
38 import org.onap.aaf.inno.env.APIException;\r
39 \r
40 import aaf.v2_0.Users;\r
41 import aaf.v2_0.Users.User;\r
42 \r
43 /**\r
44  * p\r
45  *\r
46  */\r
47 public class ListForRoles extends Cmd {\r
48         private static final String HEADER = "List Users for Role";\r
49         public ListForRoles(List parent) {\r
50                 super(parent,"role", new Param("role",true)); \r
51         }\r
52 \r
53         @Override\r
54         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
55                 int idx = _idx;\r
56                 final String role = args[idx++];\r
57                 return same(new Retryable<Integer>() {\r
58                         @Override\r
59                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
60                                 Future<Users> fp = client.read(\r
61                                                 "/authz/users/role/"+role, \r
62                                                 getDF(Users.class)\r
63                                                 );\r
64                                 if(fp.get(AAFcli.timeout())) {\r
65                                         if (aafcli.isTest())\r
66                                                 Collections.sort(fp.value.getUser(), new Comparator<User>() {\r
67                                                         @Override\r
68                                                         public int compare(User u1, User u2) {\r
69                                                                 return u1.getId().compareTo(u2.getId());\r
70                                                         }                       \r
71                                                 });\r
72                                         ((org.onap.aaf.cmd.user.List)parent).report(fp.value,false, HEADER,role);\r
73                                         if(fp.code()==404)return 200;\r
74                                 } else {\r
75                                         error(fp);\r
76                                 }\r
77                                 return fp.code();\r
78                         }\r
79                 });\r
80         }\r
81         \r
82         @Override\r
83         public void detailedHelp(int _indent, StringBuilder sb) {\r
84                 int indent = _indent;\r
85                 detailLine(sb,indent,HEADER);\r
86                 indent+=2;\r
87                 detailLine(sb,indent,"This report lists the users associated to Roles.");\r
88                 detailLine(sb,indent,"role - the Role name");\r
89                 indent-=2;\r
90                 api(sb,indent,HttpMethods.GET,"authz/users/role/<role>",Users.class,true);\r
91         }\r
92 \r
93 }\r