[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / ns / Responsible.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package com.att.cmd.ns;\r
24 \r
25 import com.att.cadi.CadiException;\r
26 import com.att.cadi.LocatorException;\r
27 import com.att.cadi.client.Future;\r
28 import com.att.cadi.client.Rcli;\r
29 import com.att.cadi.client.Retryable;\r
30 import com.att.cmd.AAFcli;\r
31 import com.att.cmd.BaseCmd;\r
32 import com.att.cmd.Param;\r
33 import com.att.cssa.rserv.HttpMethods;\r
34 import com.att.inno.env.APIException;\r
35 \r
36 public class Responsible extends BaseCmd<NS> {\r
37         private final static String[] options = {"add","del"};\r
38 \r
39         public Responsible(NS ns) throws APIException {\r
40                 super(ns,"responsible",\r
41                                 new Param(optionsToString(options),true),\r
42                                 new Param("name",true),\r
43                                 new Param("id[,id]*",true)\r
44                 );\r
45         }\r
46 \r
47         @Override\r
48         public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {\r
49                 int idx = _idx;\r
50 \r
51                 final int option = whichOption(options, args[idx++]);\r
52                 final String ns = args[idx++];\r
53                 final String ids[] = args[idx++].split(",");\r
54                 final String realm = getOrgRealm();\r
55                 return same(new Retryable<Integer>() {\r
56                         @Override\r
57                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
58                                 Future<Void> fp=null;\r
59                                 for(String id : ids) {\r
60                                         if (id.indexOf('@') < 0 && realm != null) id += '@' + realm;\r
61                                         String verb;\r
62                                         switch(option) {\r
63                                                 case 0: \r
64                                                         fp = client.create("/authz/ns/"+ns+"/responsible/"+id,Void.class);\r
65                                                         verb = " is now ";\r
66                                                         break;\r
67                                                 case 1: \r
68                                                         fp = client.delete("/authz/ns/"+ns+"/responsible/"+id,Void.class);\r
69                                                         verb = " is no longer ";\r
70                                                         break;\r
71                                                 default:\r
72                                                         throw new CadiException("Bad Argument");\r
73                                         };\r
74                                 \r
75                                         if(fp.get(AAFcli.timeout())) {\r
76                                                 pw().append(id);\r
77                                                 pw().append(verb);\r
78                                                 pw().append("responsible for ");\r
79                                                 pw().println(ns);\r
80                                         } else {\r
81                                                 error(fp);\r
82                                                 return fp.code();\r
83                                         }\r
84                                 }\r
85                                 return fp==null?500:fp.code();\r
86                         }\r
87                 });\r
88         }\r
89 \r
90         @Override\r
91         public void detailedHelp(int _indent, StringBuilder sb) {\r
92                 int indent = _indent;\r
93                 detailLine(sb,indent,"Add or Delete Responsible person to/from Namespace");\r
94                 indent+=2;\r
95                 detailLine(sb,indent,"Responsible persons receive Notifications and approve Requests ");\r
96                 detailLine(sb,indent,"regarding this Namespace. Companies have Policies as to who may");\r
97                 detailLine(sb,indent,"take on this responsibility");\r
98 \r
99                 indent+=2;\r
100                 detailLine(sb,indent,"name - Name of Namespace");\r
101                 detailLine(sb,indent,"id   - Credential of Person(s) to be made responsible");\r
102                 sb.append('\n');\r
103                 detailLine(sb,indent,"aafcli will call API on each ID presented.");\r
104                 indent-=4;\r
105                 api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/responsible/<id>",Void.class,true);\r
106                 api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/responsible/<id>",Void.class,false);\r
107         }\r
108 \r
109 \r
110 }\r