2a074d15c915ef7668726fd44893a78300c7a0cf
[aaf/cadi.git] / core / src / main / java / com / att / cadi / taf / localhost / LocalhostTafResp.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.taf.localhost;\r
24 \r
25 import java.security.Principal;\r
26 \r
27 import com.att.cadi.Access;\r
28 import com.att.cadi.taf.TafResp;\r
29 \r
30 public class LocalhostTafResp implements TafResp {\r
31         private RESP action;\r
32         private String description;\r
33         private final static Principal principal = new Principal() {\r
34                 private String name = System.getProperty("user.name")+"@localhost";\r
35 //              @Override\r
36                 public String getName() {\r
37                         return name;\r
38                 }\r
39         };\r
40 \r
41         private Access access;\r
42         \r
43         public LocalhostTafResp(Access access, RESP state, String desc) {\r
44                 action = state;\r
45                 description = desc;\r
46                 this.access = access;\r
47         }\r
48         \r
49 //      @Override\r
50         public boolean isValid() {\r
51                 return action == RESP.IS_AUTHENTICATED;\r
52         }\r
53 \r
54 //      @Override\r
55         public String desc() {\r
56                 return description;\r
57         }\r
58 \r
59 //      @Override\r
60         public RESP authenticate() {\r
61                 return action;\r
62         }\r
63         \r
64         public RESP isAuthenticated() {\r
65                 return action;\r
66         }\r
67 \r
68 //      @Override\r
69         public Principal getPrincipal() {\r
70                 return principal;\r
71         }\r
72 \r
73         public Access getAccess() {\r
74                 return access;\r
75         }\r
76 \r
77         public boolean isFailedAttempt() {\r
78                 return false;\r
79         }\r
80 \r
81 }\r