Collection syntax change because of Sonar
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / config / SecurityInfoC.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.config;
23
24 import java.util.HashMap;
25 import java.util.Map;
26
27 import org.onap.aaf.cadi.Access;
28 import org.onap.aaf.cadi.CadiException;
29 import org.onap.aaf.cadi.SecuritySetter;
30
31
32 public class SecurityInfoC<CLIENT> extends SecurityInfo {
33         public static final String DEF_ID = "ID not Set";
34         private static Map<Class<?>,SecurityInfoC<?>> sicMap = new HashMap<>();
35         public SecuritySetter<CLIENT> defSS;
36
37         public SecurityInfoC(Access access) throws CadiException {
38                 super(access);
39                 defSS = new SecuritySetter<CLIENT>() {
40                                 @Override
41                                 public String getID() {
42                                         return DEF_ID;
43                                 }
44
45                                 @Override
46                                 public void setSecurity(CLIENT client) throws CadiException {
47                                         throw new CadiException("No Client Credentials set.");
48                                 }
49
50                                 @Override
51                                 public int setLastResponse(int respCode) {
52                                         return 0;
53                                 }
54                         };
55         }
56         
57         public static synchronized <CLIENT> SecurityInfoC<CLIENT> instance(Access access, Class<CLIENT> cls) throws CadiException {
58                 @SuppressWarnings("unchecked")
59                 SecurityInfoC<CLIENT> sic = (SecurityInfoC<CLIENT>) sicMap.get(cls);
60                 if(sic==null) {
61                         sic = new SecurityInfoC<CLIENT>(access); 
62                         sicMap.put(cls, sic);
63                 }
64                 return sic;
65         }
66
67         public SecurityInfoC<CLIENT> set(SecuritySetter<CLIENT> defSS) {
68                 this.defSS = defSS;
69                 return this;
70         }
71
72 }