e847bd01245487508fcb0f947949d57c5d70240a
[aaf/cadi.git] / cass / src / main / java / com / att / cadi / aaf / cass / AAFAuthenticatedUser.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.aaf.cass;\r
24 \r
25 import java.security.Principal;\r
26 \r
27 import org.apache.cassandra.auth.AuthenticatedUser;\r
28 \r
29 import com.att.cadi.Access;\r
30 \r
31 public class AAFAuthenticatedUser extends AuthenticatedUser implements Principal {\r
32         private boolean anonymous = false, supr=false, local=false;\r
33         private String fullName;\r
34 //      private Access access;\r
35 \r
36         public AAFAuthenticatedUser(Access access, String name) {\r
37                 super(name);\r
38 //              this.access = access;\r
39             int endIndex = name.indexOf("@");\r
40             if(endIndex >= 0) {\r
41                 fullName = name;\r
42             } else {\r
43                 fullName = name + '@' + AAFBase.default_realm;\r
44             }\r
45         }\r
46         \r
47         public String getFullName() {\r
48                 return fullName;\r
49         }\r
50         \r
51         public String getName() {\r
52                 return fullName;\r
53         }\r
54         \r
55         /* (non-Javadoc)\r
56          * @see org.apache.cassandra.auth.AuthenticatedUser#isAnonymous()\r
57          */\r
58         @Override\r
59         public boolean isAnonymous() {\r
60                 return anonymous;\r
61         }\r
62 \r
63         public void setAnonymous(boolean anon) {\r
64                 anonymous = anon;\r
65         }\r
66 \r
67         public boolean getAnonymous() {\r
68                 return anonymous;\r
69         }\r
70 \r
71         /* (non-Javadoc)\r
72          * @see org.apache.cassandra.auth.AuthenticatedUser#isSuper()\r
73          */\r
74         @Override\r
75         public boolean isSuper() {\r
76                 return supr;\r
77         }\r
78 \r
79         public void setSuper(boolean supr) {\r
80                 this.supr = supr;\r
81         }\r
82 \r
83         public boolean getSuper() {\r
84                 return supr;\r
85         }\r
86 \r
87         /**\r
88          * We check Local so we can compare with the right Lur.  This is AAF Plugin only.\r
89          * @return\r
90          */\r
91         public boolean isLocal() {\r
92                 return local;\r
93         }\r
94         \r
95         public void setLocal(boolean val) {\r
96                 local = val;\r
97         }\r
98 \r
99         @Override\r
100           public boolean equals(Object o) {\r
101                   if (this == o) return true;\r
102               if (!(o instanceof AAFAuthenticatedUser)) return false;\r
103               return ((AuthenticatedUser)o).getName().equals(this.getName());\r
104           }\r
105 \r
106           @Override\r
107           public int hashCode() {\r
108                   //access.log(Level.DEBUG, "AAFAuthentication hashcode ",getName().hashCode());\r
109               return getName().hashCode();\r
110           }  \r
111 }\r