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