Update aaf client module
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / perm / Describe.java
diff --git a/authz-cmd/src/main/java/com/att/cmd/perm/Describe.java b/authz-cmd/src/main/java/com/att/cmd/perm/Describe.java
deleted file mode 100644 (file)
index 3d6646f..0000000
+++ /dev/null
@@ -1,101 +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 com.att.cmd.perm;\r
-\r
-import com.att.cadi.CadiException;\r
-import com.att.cadi.LocatorException;\r
-import com.att.cadi.client.Future;\r
-import com.att.cadi.client.Rcli;\r
-import com.att.cadi.client.Retryable;\r
-import com.att.cmd.AAFcli;\r
-import com.att.cmd.Cmd;\r
-import com.att.cmd.Param;\r
-import com.att.cssa.rserv.HttpMethods;\r
-import com.att.inno.env.APIException;\r
-\r
-import aaf.v2_0.PermRequest;\r
-\r
-public class Describe extends Cmd {\r
-       private static final String PERM_PATH = "/authz/perm";\r
-       public Describe(Perm parent) {\r
-               super(parent,"describe", \r
-                               new Param("type",true),\r
-                               new Param("instance", true),\r
-                               new Param("action", true),\r
-                               new Param("description",true)); \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 type = args[idx++];\r
-                               String instance = args[idx++];\r
-                               String action = args[idx++];\r
-                               StringBuilder desc = new StringBuilder();\r
-                               while (idx < args.length) {\r
-                                       desc.append(args[idx++] + ' ');\r
-                               }\r
-               \r
-                               PermRequest pr = new PermRequest();\r
-                               pr.setType(type);\r
-                               pr.setInstance(instance);\r
-                               pr.setAction(action);\r
-                               pr.setDescription(desc.toString());\r
-               \r
-                               // Set Start/End commands\r
-                               setStartEnd(pr);\r
-                               \r
-                               Future<PermRequest> fp = null;\r
-                               int rv;\r
-\r
-                               fp = client.update(\r
-                                       PERM_PATH,\r
-                                       getDF(PermRequest.class),\r
-                                       pr\r
-                                       );\r
-\r
-                               if(fp.get(AAFcli.timeout())) {\r
-                                       rv=fp.code();\r
-                                       pw().println("Description added to Permission");\r
-                               } else {\r
-                                       if((rv=fp.code())==202) {\r
-                                               pw().print("Adding description");\r
-                                               pw().println(" Accepted, but requires Approvals before actualizing");\r
-                                       } else {\r
-                                               error(fp);\r
-                                       }\r
-                               }\r
-                               return rv;\r
-                       }\r
-               });\r
-       }\r
-\r
-       @Override\r
-       public void detailedHelp(int indent, StringBuilder sb) {\r
-               detailLine(sb,indent,"Add a description to a permission");\r
-               api(sb,indent,HttpMethods.PUT,"authz/perm",PermRequest.class,true);\r
-       }\r
-}\r