AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / role / Describe.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.role;
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.RoleRequest;
36
37 public class Describe extends Cmd {
38         private static final String ROLE_PATH = "/authz/role";
39         public Describe(Role parent) {
40                 super(parent,"describe", 
41                                 new Param("name",true),
42                                 new Param("description",true)); 
43         }
44
45         @Override
46         public int _exec(final int index, final String ... args) throws CadiException, APIException, LocatorException {
47                 return same(new Retryable<Integer>() {
48                         @Override
49                         public Integer code(Rcli<?> client) throws CadiException, APIException {
50                                 int idx = index;
51                                 String role = args[idx++];
52                                 StringBuilder desc = new StringBuilder();
53                                 while (idx < args.length) {
54                                         desc.append(args[idx++] + ' ');
55                                 }
56                 
57                                 RoleRequest rr = new RoleRequest();
58                                 rr.setName(role);
59                                 rr.setDescription(desc.toString());
60                 
61                                 // Set Start/End commands
62                                 setStartEnd(rr);
63                                 
64                                 Future<RoleRequest> fp = null;
65                                 int rv;
66
67                                 fp = client.update(
68                                         ROLE_PATH,
69                                         getDF(RoleRequest.class),
70                                         rr
71                                         );
72
73                                 if(fp.get(AAFcli.timeout())) {
74                                         rv=fp.code();
75                                         pw().println("Description added to role");
76                                 } else {
77                                         if((rv=fp.code())==202) {
78                                                 pw().print("Adding description");
79                                                 pw().println(" Accepted, but requires Approvals before actualizing");
80                                         } else {
81                                                 error(fp);
82                                         }
83                                 }
84                                 return rv;
85                         }
86                 });
87         }
88
89         @Override
90         public void detailedHelp(int indent, StringBuilder sb) {
91                 detailLine(sb,indent,"Add a description to a role");
92                 api(sb,indent,HttpMethods.PUT,"authz/role",RoleRequest.class,true);
93         }
94 }