AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / user / ListDelegates.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.cmd.user;
23
24 import org.onap.aaf.auth.cmd.AAFcli;
25 import org.onap.aaf.auth.cmd.Cmd;
26 import org.onap.aaf.auth.cmd.Param;
27 import org.onap.aaf.auth.rserv.HttpMethods;
28 import org.onap.aaf.cadi.CadiException;
29 import org.onap.aaf.cadi.LocatorException;
30 import org.onap.aaf.cadi.client.Future;
31 import org.onap.aaf.cadi.client.Rcli;
32 import org.onap.aaf.cadi.client.Retryable;
33 import org.onap.aaf.misc.env.APIException;
34
35 import aaf.v2_0.Delgs;
36
37 /**
38  *  * @author Jonathan
39  *
40  */
41 public class ListDelegates extends Cmd {
42         private static final String HEADER = "List Delegates"; 
43         private static final String[] options = {"user","delegate"};
44         public ListDelegates(List parent) {
45                 super(parent,"delegates", 
46                                 new Param(optionsToString(options),true),
47                                 new Param("id",true));
48         }
49
50         @Override
51         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {
52                 int idx = _idx;
53                 final String key = args[idx++];
54                 //int option = whichOption(options,key);
55                 final String id = fullID(args[idx++]);
56                 return same(new Retryable<Integer>() {
57                         @Override
58                         public Integer code(Rcli<?> client) throws CadiException, APIException {
59                 
60                                 Future<Delgs> fp = client.read(
61                                                 "/authz/delegates/" + key + '/' + id, 
62                                                 getDF(Delgs.class)
63                                                 );
64                                 if(fp.get(AAFcli.timeout())) {
65                                         ((List)parent).report(fp.value,HEADER + " by " + key, id);
66                                         if(fp.code()==404)return 200;
67                                 } else {
68                                         error(fp);
69                                 }
70                                 return fp.code();
71                         }
72                 });
73         }
74
75         @Override
76         public void detailedHelp(int _indent, StringBuilder sb) {
77                 int indent = _indent;
78                 detailLine(sb,indent,HEADER);
79                 indent+=2;
80                 detailLine(sb,indent,"Delegates are those people temporarily assigned to cover the");
81                 detailLine(sb,indent,"responsibility of Approving, etc, while the actual Responsible");
82                 detailLine(sb,indent,"Party is absent.  Typically, this is for Vacation, or Business");
83                 detailLine(sb,indent,"Travel.");
84                 sb.append('\n');
85                 detailLine(sb,indent,"Delegates can be listed by the User or by the Delegate");
86                 indent-=2;
87                 api(sb,indent,HttpMethods.GET,"authz/delegates/user/<id>",Delgs.class,true);
88                 api(sb,indent,HttpMethods.GET,"authz/delegates/delegate/<id>",Delgs.class,false);
89         }
90
91
92 }