AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-cmd / src / main / java / org / onap / aaf / cmd / perm / Rename.java
diff --git a/authz-cmd/src/main/java/org/onap/aaf/cmd/perm/Rename.java b/authz-cmd/src/main/java/org/onap/aaf/cmd/perm/Rename.java
deleted file mode 100644 (file)
index 0198569..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-/*******************************************************************************\r
- * ============LICENSE_START====================================================\r
- * * org.onap.aaf\r
- * * ===========================================================================\r
- * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
- * * ===========================================================================\r
- * * Licensed under the Apache License, Version 2.0 (the "License");\r
- * * you may not use this file except in compliance with the License.\r
- * * You may obtain a copy of the License at\r
- * * \r
- *  *      http://www.apache.org/licenses/LICENSE-2.0\r
- * * \r
- *  * Unless required by applicable law or agreed to in writing, software\r
- * * distributed under the License is distributed on an "AS IS" BASIS,\r
- * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * * See the License for the specific language governing permissions and\r
- * * limitations under the License.\r
- * * ============LICENSE_END====================================================\r
- * *\r
- * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
- * *\r
- ******************************************************************************/\r
-package org.onap.aaf.cmd.perm;\r
-\r
-import org.onap.aaf.cmd.AAFcli;\r
-import org.onap.aaf.cmd.Cmd;\r
-import org.onap.aaf.cmd.Param;\r
-import org.onap.aaf.cssa.rserv.HttpMethods;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.LocatorException;\r
-import org.onap.aaf.cadi.client.Future;\r
-import org.onap.aaf.cadi.client.Rcli;\r
-import org.onap.aaf.cadi.client.Retryable;\r
-import org.onap.aaf.inno.env.APIException;\r
-\r
-import aaf.v2_0.PermRequest;\r
-\r
-public class Rename extends Cmd {\r
-       public Rename(Perm parent) {\r
-               super(parent,"rename", \r
-                               new Param("type",true), \r
-                               new Param("instance",true),\r
-                               new Param("action", true),\r
-                               new Param("new type",true), \r
-                               new Param("new instance",true),\r
-                               new Param("new action", true)\r
-                               );\r
-       }\r
-       \r
-       @Override\r
-       public int _exec(final int index, final String ... args) throws CadiException, APIException, LocatorException {\r
-               return same(new Retryable<Integer>() {\r
-                       @Override\r
-                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
-                               int idx = index;\r
-                               String origType = args[idx++];\r
-                               String origInstance = args[idx++];\r
-                               String origAction = args[idx++];\r
-                               \r
-                               //Create new permission\r
-                               PermRequest pr = new PermRequest();\r
-                               pr.setType(args[idx++]);\r
-                               pr.setInstance(args[idx++]);\r
-                               pr.setAction(args[idx++]);\r
-                               \r
-                               // Set Start/End commands\r
-                               setStartEnd(pr);\r
-                               Future<PermRequest> fp = client.update(\r
-                                               "/authz/perm/"+origType+"/"+origInstance+"/"+origAction,\r
-                                               getDF(PermRequest.class),\r
-                                               pr\r
-                                               );\r
-                               int rv;\r
-                               if(fp.get(AAFcli.timeout())) {\r
-                                       rv = fp.code();\r
-                                       pw().println("Updated Permission");\r
-                               } else {\r
-                                       rv = fp.code();\r
-                                       if(rv==202) {\r
-                                               pw().println("Permission Update Accepted, but requires Approvals before actualizing");\r
-                                       } else {\r
-                                               error(fp);\r
-                                       }\r
-                               }\r
-                               return rv;\r
-                       }\r
-               });\r
-               \r
-       }\r
-       \r
-       @Override\r
-       public void detailedHelp(int indent, StringBuilder sb) {\r
-               detailLine(sb,indent,"Rename a Permission from:");\r
-               detailLine(sb,indent+2,"<type> <instance> <action>");\r
-               detailLine(sb,indent,"to:");\r
-               detailLine(sb,indent+2,"<new type> <new instance> <new action>");\r
-               sb.append('\n');\r
-               detailLine(sb,indent,"Namespace must be the same in <type> and <new type>");\r
-               detailLine(sb,indent+4,"see Create for definitions of type,instance and action");\r
-               api(sb,indent,HttpMethods.PUT,"authz/perm/<type>/<instance>/<action>",PermRequest.class,true);\r
-       }\r
-}\r