Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IContainerMap |
|
| 1.0;1 |
1 | package com.aurea.maven.plugins.sonic.sdm.container; | |
2 | ||
3 | import java.util.Map; | |
4 | import java.util.Properties; | |
5 | import java.util.Set; | |
6 | ||
7 | public interface IContainerMap { | |
8 | ||
9 | ||
10 | /** | |
11 | * | |
12 | */ | |
13 | String ROLE = IContainerMap.class.getName(); | |
14 | ||
15 | /** | |
16 | * Whether to use the default includes for ESB containers. Set to false to disable ESB container generation for unmatched instances. | |
17 | * @return | |
18 | */ | |
19 | boolean isUseESBDefaultIncludes(); | |
20 | ||
21 | /** | |
22 | * Whether to use the default includes for ESB containers. Set to false to disable MF container generation for unmatched ESB containers. | |
23 | * @return | |
24 | */ | |
25 | boolean isUseMFDefaultIncludes(); | |
26 | ||
27 | /** | |
28 | * @return IContainerSetting | |
29 | */ | |
30 | IContainerSetting getDefaultESBContainerSetting(); | |
31 | ||
32 | /** | |
33 | * @return IContainerSetting | |
34 | */ | |
35 | IContainerSetting getDefaultMFContainerSetting(); | |
36 | ||
37 | /** | |
38 | * @param _key | |
39 | * key | |
40 | * @return List<String, Properties> | |
41 | */ | |
42 | Map<String, Properties> matchESBContainerSettings(String _key); | |
43 | ||
44 | /** | |
45 | * @param _key | |
46 | * key | |
47 | * @return List<String, Properties> | |
48 | */ | |
49 | Map<String, Properties> matchMFContainerSettings(String _key); | |
50 | ||
51 | /** | |
52 | * @return List<IContainerSetting> | |
53 | */ | |
54 | Set<IContainerSetting> getESBContainerSettings(); | |
55 | ||
56 | /** | |
57 | * @return List<IContainerSetting> | |
58 | */ | |
59 | Set<IContainerSetting> getMFContainerSettings(); | |
60 | } |