Update aaf client module
[aaf/authz.git] / authz-cmd / src / main / java / com / att / cmd / ns / ListNsKeysByAttrib.java
diff --git a/authz-cmd/src/main/java/com/att/cmd/ns/ListNsKeysByAttrib.java b/authz-cmd/src/main/java/com/att/cmd/ns/ListNsKeysByAttrib.java
deleted file mode 100644 (file)
index 43b8349..0000000
+++ /dev/null
@@ -1,88 +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.ns;\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.Keys;\r
-import aaf.v2_0.Nss;\r
-import aaf.v2_0.Perms;\r
-import aaf.v2_0.Roles;\r
-import aaf.v2_0.Users;\r
-\r
-/**\r
- * p\r
- *\r
- */\r
-public class ListNsKeysByAttrib extends Cmd {\r
-       private static final String HEADER="List Namespace Names by Attribute";\r
-       \r
-       public ListNsKeysByAttrib(List parent) {\r
-               super(parent,"keys", \r
-                               new Param("attrib",true)); \r
-       }\r
-\r
-       @Override\r
-       public int _exec(final int idx, final String ... args) throws CadiException, APIException, LocatorException {\r
-               final String attrib=args[idx];\r
-               return same(new Retryable<Integer>() {\r
-                       @Override\r
-                       public Integer code(Rcli<?> client) throws CadiException, APIException {\r
-                               Future<Keys> fn = client.read("/authz/ns/attrib/"+attrib,getDF(Keys.class));\r
-                               if(fn.get(AAFcli.timeout())) {\r
-                                       parent.reportHead(HEADER);\r
-                                       for(String key : fn.value.getKey()) {\r
-                                               pw().printf(List.kformat, key);\r
-                                       }\r
-                               } else if(fn.code()==404) {\r
-                                       parent.reportHead(HEADER);\r
-                                       pw().println("    *** No Namespaces Found ***");\r
-                                       return 200;\r
-                               } else {        \r
-                                       error(fn);\r
-                               }\r
-                               return fn.code();\r
-                       }\r
-               });\r
-       }\r
-\r
-       @Override\r
-       public void detailedHelp(int indent, StringBuilder sb) {\r
-               detailLine(sb,indent,HEADER);\r
-               api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);\r
-               detailLine(sb,indent,"Indirectly uses:");\r
-               api(sb,indent,HttpMethods.GET,"authz/roles/ns/<ns>",Roles.class,false);\r
-               api(sb,indent,HttpMethods.GET,"authz/perms/ns/<ns>",Perms.class,false);\r
-               api(sb,indent,HttpMethods.GET,"authn/creds/ns/<ns>",Users.class,false);\r
-       }\r
-\r
-}\r