[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / ns / Attrib.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 Attrib extends BaseCmd<NS> {\r
37         private final static String[] options = {"add","upd","del"};\r
38 \r
39         public Attrib(NS ns) throws APIException {\r
40                 super(ns,"attrib",\r
41                                 new Param(optionsToString(options),true),\r
42                                 new Param("ns",true),\r
43                                 new Param("key",true),\r
44                                 new Param("value",false)\r
45                 );\r
46         }\r
47 \r
48         @Override\r
49         public int _exec(final int idx, final String ... args) throws CadiException, APIException, LocatorException {\r
50                 final int option = whichOption(options, args[idx]);\r
51                 final String ns = args[idx+1];\r
52                 final String key = args[idx+2];\r
53                 final String value;\r
54                 if(option!=2) {\r
55                         if(args.length<=idx+3) {\r
56                                 throw new CadiException("Not added: Need more Data");\r
57                         }\r
58                         value = args[idx+3];\r
59                 } else {\r
60                         value = "";\r
61                 }\r
62                 \r
63                 return same(new Retryable<Integer>() {\r
64                         @Override\r
65                         public Integer code(Rcli<?> client) throws CadiException, APIException {        \r
66                                 Future<Void> fp = null;\r
67                                 String message;\r
68                                 switch(option) {\r
69                                         case 0: \r
70                                                 fp = client.create("/authz/ns/"+ns+"/attrib/"+key+'/'+value,Void.class);\r
71                                                 message = String.format("Add Attrib %s=%s to %s",\r
72                                                                 key,value,ns);\r
73                                                 break;\r
74                                         case 1: \r
75                                                 fp = client.update("/authz/ns/"+ns+"/attrib/"+key+'/'+value);\r
76                                                 message = String.format("Update Attrib %s=%s for %s",\r
77                                                                 key,value,ns);\r
78                                                 break;\r
79                                         case 2: \r
80                                                 fp = client.delete("/authz/ns/"+ns+"/attrib/"+key,Void.class);\r
81                                                 message = String.format("Attrib %s deleted from %s",\r
82                                                                 key,ns);\r
83                                                 break;\r
84                                         default:\r
85                                                 throw new CadiException("Bad Argument");\r
86                                 };\r
87                         \r
88                                 if(fp.get(AAFcli.timeout())) {\r
89                                         pw().println(message);\r
90                                 } else {\r
91                                         error(fp);\r
92                                         return fp.code();\r
93                                 }\r
94                                         \r
95                                 return fp==null?500:fp.code();\r
96                         }\r
97                 });\r
98         }\r
99 \r
100         @Override\r
101         public void detailedHelp(int _indent, StringBuilder sb) {\r
102                 int indent = _indent;\r
103                 detailLine(sb,indent,"Add or Delete Administrator to/from Namespace");\r
104                 indent+=4;\r
105                 detailLine(sb,indent,"name - Name of Namespace");\r
106                 detailLine(sb,indent,"id   - Credential of Person(s) to be Administrator");\r
107                 sb.append('\n');\r
108                 detailLine(sb,indent,"aafcli will call API on each ID presented.");\r
109                 indent-=4;\r
110                 api(sb,indent,HttpMethods.POST,"authz/ns/<ns>/admin/<id>",Void.class,true);\r
111                 api(sb,indent,HttpMethods.DELETE,"authz/ns/<ns>/admin/<id>",Void.class,false);\r
112         }\r
113 \r
114 }\r