4017866a37a8c818d7d0a3189869fcebdb3d93f3
[aaf/cadi.git] / core / src / main / java / com / att / cadi / Taf.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package com.att.cadi;\r
24 \r
25 import com.att.cadi.taf.TafResp;\r
26 \r
27 \r
28 /**\r
29  * TAF - Transmutative Assertion Framework.  \r
30  * \r
31  * This main Interface embodies the essential of the assertion, where a number of different TAFs might be used to authenticate\r
32  * and that authentication to be recognized through other elements.\r
33  * \r
34  * Concept by Robert Garskof.  Implemented by Jonathan Gathman\r
35  *  \r
36  *\r
37  */\r
38 public interface Taf {\r
39         enum LifeForm {CBLF, SBLF, LFN};\r
40         /**\r
41          * The lifeForm param is a humorous way of describing whether the interaction is proceeding from direct Human Interaction via a browser \r
42          * or App which can directly query a memorized password, key sequence, bio-feedback, from that user, or a machine mechanism for which identity\r
43          * can more easily be determined by Certificate, Mechanical ID/Password etc.  Popularized in modern culture and Science Fiction (especially \r
44          * 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
45          * "Silicon Based Life Forms" (SBLF) to indicate machine only interactions.  I have added "LFN" for (Life-Form Neutral) to aid identifying\r
46          * 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
47          * \r
48          * The variable parameter is not necessarily ideal, but with too many unknown Tafs to be created, flexibility,\r
49          * is unfortunately required at this point.  Future versions could lock this down more.  JG 10/18/2012\r
50          * \r
51          * @param lifeForm\r
52          * @param info\r
53          * @return\r
54          */\r
55         public TafResp validate(LifeForm reading, String ... info);\r
56         \r
57 }\r