Improved the UT coverage
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dcae / entity / DcaeConfigurations.java
1 /**\r
2  * Copyright 2017 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.ArrayList;\r
20 import java.util.HashMap;\r
21 import java.util.List;\r
22 import java.util.Map;\r
23 import java.util.Set;\r
24 \r
25 public class DcaeConfigurations extends HashMap<String, Object>{\r
26 \r
27     private static final String STREAMS_PUBLISHES = "streamsPublishes";\r
28     private static final String STREAMS_SUBSCRIBES = "streamsSubscribes";\r
29     private static final String RULES = "rules";\r
30 \r
31     public DcaeConfigurations(){\r
32         super();\r
33         this.put(STREAMS_PUBLISHES, new HashMap<String, SecurityInfo>());\r
34         this.put(STREAMS_SUBSCRIBES, new HashMap<String, SecurityInfo>());\r
35         this.put(RULES, new ArrayList<Rule>());\r
36     }\r
37 \r
38     public void addDefaultRule(Rule rule) {\r
39         if (null == rule) {\r
40             return;\r
41         }\r
42         ((List<Rule>)(this.get(RULES))).add(rule);\r
43     }\r
44 \r
45     public List<Rule> getDefaultRules() {\r
46         return (List<Rule>)(this.get(RULES));\r
47     }\r
48 \r
49     public SecurityInfo addPubSecInfo(String key, SecurityInfo value) {\r
50         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).put(key, value);\r
51     }\r
52 \r
53     public SecurityInfo getPubSecInfo(String key) {\r
54         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).get(key);\r
55     }\r
56 \r
57     public SecurityInfo addSubSecInfo(String key, SecurityInfo value) {\r
58         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).put(key, value);\r
59     }\r
60 \r
61     public SecurityInfo getSubSecInfo(String key) {\r
62         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).get(key);\r
63     }\r
64 \r
65     public Set<String> getSubKeys(){\r
66         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).keySet();\r
67     }\r
68 }\r