Removed MSB Invocation During AAI Calling
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dcae / entity / DcaeConfigurations.java
1 /**\r
2  * Copyright 2017-2023 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.common.dcae.entity;\r
18 \r
19 import java.util.*;\r
20 \r
21 public class DcaeConfigurations extends HashMap<String, Object>{\r
22 \r
23     private static final String STREAMS_PUBLISHES = "streamsPublishes";\r
24     private static final String STREAMS_SUBSCRIBES = "streamsSubscribes";\r
25     private static final String RULES = "rules";\r
26 \r
27     public DcaeConfigurations(){\r
28         super();\r
29         this.put(STREAMS_PUBLISHES, new HashMap<String, SecurityInfo>());\r
30         this.put(STREAMS_SUBSCRIBES, new HashMap<String, SecurityInfo>());\r
31         this.put(RULES, new ArrayList<Rule>());\r
32     }\r
33 \r
34     public void addDefaultRule(Rule rule) {\r
35         if (null == rule) {\r
36             return;\r
37         }\r
38         ((List<Rule>)(this.get(RULES))).add(rule);\r
39     }\r
40 \r
41     public List<Rule> getDefaultRules() {\r
42         return (List<Rule>)(this.get(RULES));\r
43     }\r
44 \r
45     public SecurityInfo addPubSecInfo(String key, SecurityInfo value) {\r
46         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).put(key, value);\r
47     }\r
48 \r
49     public SecurityInfo getPubSecInfo(String key) {\r
50         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).get(key);\r
51     }\r
52 \r
53     public SecurityInfo addSubSecInfo(String key, SecurityInfo value) {\r
54         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).put(key, value);\r
55     }\r
56 \r
57     public SecurityInfo getSubSecInfo(String key) {\r
58         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).get(key);\r
59     }\r
60 \r
61     public Set<String> getSubKeys(){\r
62         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).keySet();\r
63     }\r
64 }\r