AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / mgmt / SessClear.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.mgmt;
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.common.Define;
28 import org.onap.aaf.auth.rserv.HttpMethods;
29 import org.onap.aaf.cadi.CadiException;
30 import org.onap.aaf.cadi.LocatorException;
31 import org.onap.aaf.cadi.client.Future;
32 import org.onap.aaf.cadi.client.Rcli;
33 import org.onap.aaf.cadi.client.Retryable;
34 import org.onap.aaf.misc.env.APIException;
35
36 /**
37  * p
38  * @author Jonathan
39  *
40  */
41 public class SessClear extends Cmd {
42         public SessClear(Session parent) {
43                 super(parent,"clear",
44                                 new Param("machine",true));
45         }
46
47         @Override
48         public int _exec(int idx, String ... args) throws CadiException, APIException, LocatorException {
49                 int rv=409;
50                 String machine = args[idx++];
51                 rv = oneOf(new Retryable<Integer>() {
52                         @Override
53                         public Integer code(Rcli<?> client) throws APIException, CadiException {
54                                 int rv = 409;
55                                 Future<Void> fp = client.delete(
56                                                 "/mgmt/dbsession", 
57                                                 Void.class
58                                                 );
59                                 if(fp.get(AAFcli.timeout())) {
60                                         pw().println("Cleared DBSession on " + client);
61                                         rv=200;
62                                 } else {
63                                         if(rv==409)rv = fp.code();
64                                         error(fp);
65                                 }
66                                 return rv;
67                         }
68                 },machine);
69                 return rv;
70         }
71
72         @Override
73         public void detailedHelp(int _indent, StringBuilder sb) {
74                 int indent = _indent;
75                 detailLine(sb,indent,"Clear the cache for certain tables");
76                 indent+=2;
77                 detailLine(sb,indent,"name        - name of table or 'all'");
78                 detailLine(sb,indent+14,"Must have admin rights to " + Define.ROOT_NS() + '\'');
79                 indent-=2;
80                 api(sb,indent,HttpMethods.DELETE,"mgmt/cache/:name",Void.class,true);
81         }
82
83 }