[AAF-21] Updated Copyright Headers for AAF
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / perm / Rename.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.perm;\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.Cmd;\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 import aaf.v2_0.PermRequest;\r
37 \r
38 public class Rename extends Cmd {\r
39         public Rename(Perm parent) {\r
40                 super(parent,"rename", \r
41                                 new Param("type",true), \r
42                                 new Param("instance",true),\r
43                                 new Param("action", true),\r
44                                 new Param("new type",true), \r
45                                 new Param("new instance",true),\r
46                                 new Param("new action", true)\r
47                                 );\r
48         }\r
49         \r
50         @Override\r
51         public int _exec(final int index, final String ... args) throws CadiException, APIException, LocatorException {\r
52                 return same(new Retryable<Integer>() {\r
53                         @Override\r
54                         public Integer code(Rcli<?> client) throws CadiException, APIException {\r
55                                 int idx = index;\r
56                                 String origType = args[idx++];\r
57                                 String origInstance = args[idx++];\r
58                                 String origAction = args[idx++];\r
59                                 \r
60                                 //Create new permission\r
61                                 PermRequest pr = new PermRequest();\r
62                                 pr.setType(args[idx++]);\r
63                                 pr.setInstance(args[idx++]);\r
64                                 pr.setAction(args[idx++]);\r
65                                 \r
66                                 // Set Start/End commands\r
67                                 setStartEnd(pr);\r
68                                 Future<PermRequest> fp = client.update(\r
69                                                 "/authz/perm/"+origType+"/"+origInstance+"/"+origAction,\r
70                                                 getDF(PermRequest.class),\r
71                                                 pr\r
72                                                 );\r
73                                 int rv;\r
74                                 if(fp.get(AAFcli.timeout())) {\r
75                                         rv = fp.code();\r
76                                         pw().println("Updated Permission");\r
77                                 } else {\r
78                                         rv = fp.code();\r
79                                         if(rv==202) {\r
80                                                 pw().println("Permission Update Accepted, but requires Approvals before actualizing");\r
81                                         } else {\r
82                                                 error(fp);\r
83                                         }\r
84                                 }\r
85                                 return rv;\r
86                         }\r
87                 });\r
88                 \r
89         }\r
90         \r
91         @Override\r
92         public void detailedHelp(int indent, StringBuilder sb) {\r
93                 detailLine(sb,indent,"Rename a Permission from:");\r
94                 detailLine(sb,indent+2,"<type> <instance> <action>");\r
95                 detailLine(sb,indent,"to:");\r
96                 detailLine(sb,indent+2,"<new type> <new instance> <new action>");\r
97                 sb.append('\n');\r
98                 detailLine(sb,indent,"Namespace must be the same in <type> and <new type>");\r
99                 detailLine(sb,indent+4,"see Create for definitions of type,instance and action");\r
100                 api(sb,indent,HttpMethods.PUT,"authz/perm/<type>/<instance>/<action>",PermRequest.class,true);\r
101         }\r
102 }\r