7b01f5a89f0cc97ff13a774291487308eba441f3
[aaf/cadi.git] / core / src / main / java / com / att / cadi / lur / NullLur.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.lur;\r
24 \r
25 import java.security.Principal;\r
26 import java.util.List;\r
27 \r
28 import com.att.cadi.Lur;\r
29 import com.att.cadi.Permission;\r
30 \r
31 public class NullLur implements Lur {\r
32         private static final Permission NULL = new Permission() {\r
33                 @Override\r
34                 public String permType() {\r
35                         return "";\r
36                 }\r
37 \r
38                 @Override\r
39                 public String getKey() {\r
40                         return "";\r
41                 }\r
42 \r
43                 @Override\r
44                 public boolean match(Permission p) {\r
45                         return false;\r
46                 }};\r
47 \r
48         public boolean fish(Principal bait, Permission pond) {\r
49                 // Well, for Jenkins, this is ok... It finds out it can't do J2EE Security, and then looks at it's own\r
50 //              System.err.println("CADI's LUR has not been configured, but is still being called.  Access is being denied");\r
51                 return false;\r
52         }\r
53 \r
54         public void fishAll(Principal bait,     List<Permission> permissions) {\r
55         }\r
56 \r
57         public void destroy() {\r
58         }\r
59 \r
60         public boolean handlesExclusively(Permission pond) {\r
61                 return false;\r
62         }\r
63 \r
64         public boolean supports(String userName) {\r
65                 return false;\r
66         }\r
67 \r
68         /* (non-Javadoc)\r
69          * @see com.att.cadi.Lur#createPerm(java.lang.String)\r
70          */\r
71         @Override\r
72         public Permission createPerm(String p) {\r
73                 return NULL;\r
74         }\r
75 \r
76         /* (non-Javadoc)\r
77          * @see com.att.cadi.Lur#clear(java.security.Principal, java.lang.StringBuilder)\r
78          */\r
79         @Override\r
80         public void clear(Principal p, StringBuilder report) {\r
81                 report.append(NullLur.class.getSimpleName());\r
82                 report.append('\n');\r
83         }\r
84         \r
85         public String toString() {\r
86                 return NullLur.class.getSimpleName() + '\n';\r
87         }\r
88 }\r