Remove Code from cadi, it is now in authz
[aaf/cadi.git] / client / src / main / java / org / onap / aaf / cadi / client / Retryable.java
diff --git a/client/src/main/java/org/onap/aaf/cadi/client/Retryable.java b/client/src/main/java/org/onap/aaf/cadi/client/Retryable.java
deleted file mode 100644 (file)
index 9c701ef..0000000
+++ /dev/null
@@ -1,72 +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.cadi.client;\r
-\r
-import java.net.ConnectException;\r
-\r
-import org.onap.aaf.cadi.CadiException;\r
-import org.onap.aaf.cadi.Locator;\r
-\r
-import org.onap.aaf.inno.env.APIException;\r
-\r
-/**\r
- * \r
- *\r
- * @param <RT>\r
- * @param <RET>\r
- */\r
-public abstract class Retryable<RET> {\r
-       // be able to hold state for consistent Connections.  Not required for all connection types.\r
-       public Rcli<?> lastClient;\r
-       private Locator.Item item;\r
-       \r
-       public Retryable() {\r
-               lastClient = null;\r
-               item = null;\r
-       }\r
-\r
-       public Retryable(Retryable<?> ret) {\r
-               lastClient = ret.lastClient;\r
-               item = ret.item;\r
-       }\r
-\r
-       public Locator.Item item(Locator.Item item) {\r
-               lastClient = null;\r
-               this.item = item;\r
-               return item;\r
-       }\r
-       public Locator.Item item() {\r
-               return item;\r
-       }\r
-       \r
-       public abstract RET code(Rcli<?> client) throws CadiException, ConnectException, APIException;\r
-\r
-       /**\r
-        * Note, Retryable is tightly coupled to the Client Utilizing.  It will not be the wrong type.\r
-        * @return\r
-        */\r
-       @SuppressWarnings("unchecked")\r
-       public <CLIENT> Rcli<CLIENT> lastClient() {\r
-               return (Rcli<CLIENT>)lastClient;\r
-       }\r
-}\r