Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / ListChildren.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.ns;
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.Nss;
36 import aaf.v2_0.Nss.Ns;
37
38 /**
39  * p
40  * @author Jonathan
41  *
42  */
43 public class ListChildren extends Cmd {
44     private static final String HEADER="List Child Namespaces";
45
46     public ListChildren(List parent) {
47         super(parent,"children",
48                 new Param("ns-name",true));
49     }
50
51     @Override
52     public int _exec(int idxValue, final String ... args) throws CadiException, APIException, LocatorException {
53             int idx = idxValue;
54         final String ns=args[idx++];
55         return same(new Retryable<Integer>() {
56             @Override
57             public Integer code(Rcli<?> client) throws CadiException, APIException {
58                 Future<Nss> fn = client.read("/authz/nss/children/"+ns,getDF(Nss.class));
59                 if (fn.get(AAFcli.timeout())) {
60                     parent.reportHead(HEADER);
61                     for (Ns ns : fn.value.getNs()) {
62                         pw().format(List.kformat, ns.getName());
63                     }
64                 } else if (fn.code()==404) {
65                     ((List)parent).report(null,HEADER,ns);
66                     return 200;
67                 } else {
68                     error(fn);
69                 }
70                 return fn.code();
71             }
72         });
73     }
74
75     @Override
76     public void detailedHelp(int indent, StringBuilder sb) {
77         detailLine(sb,indent,HEADER);
78         api(sb,indent,HttpMethods.GET,"authz/nss/children/<ns>",Nss.class,true);
79     }
80
81 }