AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / perm / Delete.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.perm;
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.PermRequest;
36
37 /**
38  * p
39  * @author Jonathan
40  *
41  */
42 public class Delete extends Cmd {
43         public Delete(Perm parent) {
44                 super(parent,"delete", 
45                                 new Param("type",true), 
46                                 new Param("instance",true),
47                                 new Param("action", true));
48         }
49
50         @Override
51         public int _exec(final int index, final String ... args) throws CadiException, APIException, LocatorException {
52                 return same(new Retryable<Integer>() {
53                         @Override
54                         public Integer code(Rcli<?> client) throws CadiException, APIException {
55                                 int idx = index;
56                                 // Object Style Delete
57                                 PermRequest pk = new PermRequest();
58                                 pk.setType(args[idx++]);
59                                 pk.setInstance(args[idx++]);
60                                 pk.setAction(args[idx++]);
61                 
62                                 // Set "Force" if set
63                                 setQueryParamsOn(client);
64                                 Future<PermRequest> fp = client.delete(
65                                                 "/authz/perm", 
66                                                 getDF(PermRequest.class),
67                                                 pk);
68                                 if(fp.get(AAFcli.timeout())) {
69                                         pw().println("Deleted Permission");
70                                 } else {
71                                         if(fp.code()==202) {
72                                                 pw().println("Permission Deletion Accepted, but requires Approvals before actualizing");
73                                         } else {
74                                                 error(fp);
75                                         }
76                                 }
77                                 return fp.code();
78                         }
79                 });
80         }
81
82         @Override
83         public void detailedHelp(int indent, StringBuilder sb) {
84                 detailLine(sb,indent,"Delete a Permission with type,instance and action");
85                 detailLine(sb,indent+4,"see Create for definitions");
86                 api(sb,indent,HttpMethods.DELETE,"authz/perm",PermRequest.class,true);
87         }
88
89 }