f1307c4bafa28a052a01ce2acc83c3eda1c9793a
[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 lombok.NoArgsConstructor;\r
24 \r
25 @NoArgsConstructor\r
26 public class DcaeConfigurations extends HashMap<String, Object>{\r
27     private Map<String, SecurityInfo> streamsPublishes = new HashMap<>();\r
28     private Map<String, SecurityInfo> streamsSubscribes = new HashMap<>();\r
29     private List<Rule> rules = new ArrayList<>();\r
30 \r
31     public void addDefaultRule(Rule rule) {\r
32         if (null == rule) {\r
33             return;\r
34         }\r
35         this.rules.add(rule);\r
36     }\r
37 \r
38     public List<Rule> getDefaultRules() {\r
39         return this.rules;\r
40     }\r
41 \r
42     public SecurityInfo addPubSecInfo(String key, SecurityInfo value) {\r
43         return this.streamsPublishes.put(key, value);\r
44     }\r
45 \r
46     public SecurityInfo getPubSecInfo(String key) {\r
47         return this.streamsPublishes.get(key);\r
48     }\r
49 \r
50     public SecurityInfo addSubSecInfo(String key, SecurityInfo value) {\r
51         return this.streamsSubscribes.put(key, value);\r
52     }\r
53 \r
54     public SecurityInfo getSubSecInfo(String key) {\r
55         return this.streamsSubscribes.get(key);\r
56     }\r
57 }\r