Add a MD5 Util Class
[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 import lombok.NoArgsConstructor;\r
25 \r
26 public class DcaeConfigurations extends HashMap<String, Object>{\r
27 \r
28     private static final String STREAMS_PUBLISHES = "streamsPublishes";\r
29     private static final String STREAMS_SUBSCRIBES = "streamsSubscribes";\r
30     private static final String RULES = "rules";\r
31 \r
32     public DcaeConfigurations(){\r
33         super();\r
34         this.put(STREAMS_PUBLISHES, new HashMap<String, SecurityInfo>());\r
35         this.put(STREAMS_SUBSCRIBES, new HashMap<String, SecurityInfo>());\r
36         this.put(RULES, new ArrayList<Rule>());\r
37     }\r
38 \r
39     public void addDefaultRule(Rule rule) {\r
40         if (null == rule) {\r
41             return;\r
42         }\r
43         ((List<Rule>)(this.get(RULES))).add(rule);\r
44     }\r
45 \r
46     public List<Rule> getDefaultRules() {\r
47         return (List<Rule>)(this.get(RULES));\r
48     }\r
49 \r
50     public SecurityInfo addPubSecInfo(String key, SecurityInfo value) {\r
51         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).put(key, value);\r
52     }\r
53 \r
54     public SecurityInfo getPubSecInfo(String key) {\r
55         return ((Map<String, SecurityInfo>)(this.get(STREAMS_PUBLISHES))).get(key);\r
56     }\r
57 \r
58     public SecurityInfo addSubSecInfo(String key, SecurityInfo value) {\r
59         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).put(key, value);\r
60     }\r
61 \r
62     public SecurityInfo getSubSecInfo(String key) {\r
63         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).get(key);\r
64     }\r
65 \r
66     public Set<String> getSubKeys(){\r
67         return ((Map<String, SecurityInfo>)(this.get(STREAMS_SUBSCRIBES))).keySet();\r
68     }\r
69 }\r