Remove Code from cadi, it is now in authz
[aaf/cadi.git] / core / src / main / java / org / onap / aaf / cadi / Taf.java
diff --git a/core/src/main/java/org/onap/aaf/cadi/Taf.java b/core/src/main/java/org/onap/aaf/cadi/Taf.java
deleted file mode 100644 (file)
index d4b2211..0000000
+++ /dev/null
@@ -1,57 +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;\r
-\r
-import org.onap.aaf.cadi.taf.TafResp;\r
-\r
-\r
-/**\r
- * TAF - Transmutative Assertion Framework.  \r
- * \r
- * This main Interface embodies the essential of the assertion, where a number of different TAFs might be used to authenticate\r
- * and that authentication to be recognized through other elements.\r
- * \r
- * Concept by Robert Garskof.  Implemented by Jonathan Gathman\r
- *  \r
- *\r
- */\r
-public interface Taf {\r
-       enum LifeForm {CBLF, SBLF, LFN};\r
-       /**\r
-        * The lifeForm param is a humorous way of describing whether the interaction is proceeding from direct Human Interaction via a browser \r
-        * or App which can directly query a memorized password, key sequence, bio-feedback, from that user, or a machine mechanism for which identity\r
-        * can more easily be determined by Certificate, Mechanical ID/Password etc.  Popularized in modern culture and Science Fiction (especially \r
-        * Star Trek), we (starting with Robert Garskof) use the terms "Carbon Based Life Form" (CBLF) for mechanisms with people at the end of them, or \r
-        * "Silicon Based Life Forms" (SBLF) to indicate machine only interactions.  I have added "LFN" for (Life-Form Neutral) to aid identifying\r
-        * processes for which it doesn't matter whether there is a human at the immediate end of the chain, or cannot be determined mechanically.  \r
-        * \r
-        * The variable parameter is not necessarily ideal, but with too many unknown Tafs to be created, flexibility,\r
-        * is unfortunately required at this point.  Future versions could lock this down more.  JG 10/18/2012\r
-        * \r
-        * @param lifeForm\r
-        * @param info\r
-        * @return\r
-        */\r
-       public TafResp validate(LifeForm reading, String ... info);\r
-       \r
-}\r