Remove Tabs, per Jococo
[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                 if(pk.getType().contains("@")) { // User Perm deletion... Must remove from hidden role
63                     client.setQueryParams("force");
64                 } else {
65                     // Set "Force" if set
66                     setQueryParamsOn(client);
67                 }
68                 Future<PermRequest> fp = client.delete(
69                         "/authz/perm", 
70                         getDF(PermRequest.class),
71                         pk);
72                 if (fp.get(AAFcli.timeout())) {
73                     pw().println("Deleted Permission");
74                 } else {
75                     if (fp.code()==202) {
76                         pw().println("Permission Deletion Accepted, but requires Approvals before actualizing");
77                     } else {
78                         error(fp);
79                     }
80                 }
81                 return fp.code();
82             }
83         });
84     }
85
86     @Override
87     public void detailedHelp(int indent, StringBuilder sb) {
88         detailLine(sb,indent,"Delete a Permission with type,instance and action");
89         detailLine(sb,indent+4,"see Create for definitions");
90         api(sb,indent,HttpMethods.DELETE,"authz/perm",PermRequest.class,true);
91     }
92
93 }