AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / user / ListDelegates.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 org.onap.aaf.cmd.AAFcli;\r
26 import org.onap.aaf.cmd.Cmd;\r
27 import org.onap.aaf.cmd.Param;\r
28 import org.onap.aaf.cssa.rserv.HttpMethods;\r
29 \r
30 import org.onap.aaf.cadi.CadiException;\r
31 import org.onap.aaf.cadi.LocatorException;\r
32 import org.onap.aaf.cadi.client.Future;\r
33 import org.onap.aaf.cadi.client.Rcli;\r
34 import org.onap.aaf.cadi.client.Retryable;\r
35 import org.onap.aaf.inno.env.APIException;\r
36 \r
37 import aaf.v2_0.Delgs;\r
38 \r
39 /**\r
40  *\r
41  */\r
42 public class ListDelegates extends Cmd {\r
43         private static final String HEADER = "List Delegates"; \r
44         private static final String[] options = {"user","delegate"};\r
45         public ListDelegates(List parent) {\r
46                 super(parent,"delegates", \r
47                                 new Param(optionsToString(options),true),\r
48                                 new Param("id",true));\r
49         }\r
50 \r
51         @Override\r
52         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
53                 String realm = getOrgRealm();\r
54                 int idx = _idx;\r
55                 final String key = args[idx++];\r
56                 //int option = whichOption(options,key);\r
57                 String id = args[idx++];\r
58                 final String fullID = (id.indexOf('@') < 0 && realm != null)? id + '@' + realm:id;\r
59                 return same(new Retryable<Integer>() {\r
60                         @Override\r
61                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
62                 \r
63                                 Future<Delgs> fp = client.read(\r
64                                                 "/authz/delegates/" + key + '/' + fullID, \r
65                                                 getDF(Delgs.class)\r
66                                                 );\r
67                                 if(fp.get(AAFcli.timeout())) {\r
68                                         ((List)parent).report(fp.value,HEADER + " by " + key, fullID);\r
69                                         if(fp.code()==404)return 200;\r
70                                 } else {\r
71                                         error(fp);\r
72                                 }\r
73                                 return fp.code();\r
74                         }\r
75                 });\r
76         }\r
77 \r
78         @Override\r
79         public void detailedHelp(int _indent, StringBuilder sb) {\r
80                 int indent = _indent;\r
81                 detailLine(sb,indent,HEADER);\r
82                 indent+=2;\r
83                 detailLine(sb,indent,"Delegates are those people temporarily assigned to cover the");\r
84                 detailLine(sb,indent,"responsibility of Approving, etc, while the actual Responsible");\r
85                 detailLine(sb,indent,"Party is absent.  Typically, this is for Vacation, or Business");\r
86                 detailLine(sb,indent,"Travel.");\r
87                 sb.append('\n');\r
88                 detailLine(sb,indent,"Delegates can be listed by the User or by the Delegate");\r
89                 indent-=2;\r
90                 api(sb,indent,HttpMethods.GET,"authz/delegates/user/<id>",Delgs.class,true);\r
91                 api(sb,indent,HttpMethods.GET,"authz/delegates/delegate/<id>",Delgs.class,false);\r
92         }\r
93 \r
94 \r
95 }\r