1
2
3
4
5 package gboat2.base.core.service;
6
7 import gboat2.base.core.model.Module;
8 import gboat2.base.core.model.ModuleAttach;
9 import gboat2.base.core.model.Opera;
10 import gboat2.base.core.model.PreferenceDefinition;
11
12 import java.util.List;
13
14
15
16
17
18
19
20
21
22
23 public interface IModuleService {
24
25 public List<Module> getModules();
26
27
28
29
30
31
32 public List<Module> getModules(String queryString);
33
34
35
36
37
38
39
40 public List<Module> getModuleListByBundleName(String bundleName);
41
42
43
44
45
46
47
48 public List<Module> getModuleByBundleAddAction(String bundleName, String actionName);
49
50
51
52
53
54
55
56
57 public List<Opera> getOperaByBundleAddAction(String bundleName, String actionName);
58
59
60
61
62
63
64 public List<Opera> getOperaByAction(String actionName);
65
66
67
68
69
70 public List<PreferenceDefinition> getPreferences();
71
72
73
74
75
76 public List<ModuleAttach> getModuleAttachList();
77 }