QcloudApiModuleCenter.java
1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.qcloud;
import java.lang.reflect.Method;
import java.util.TreeMap;
import com.qcloud.Module.Base;
/**
* @brief 模块调用类
* @author robinslsun
*
*/
public class QcloudApiModuleCenter {
private Base module;
/**
* 构造模块调用类
* @param module 实际模块实例
* @param config 模块配置参数
*/
public QcloudApiModuleCenter(Base module, TreeMap<String, Object> config){
this.module = module;
this.module.setConfig(config);
}
/**
* 生成Api调用地址
* @param actionName 模块动作名称
* @param params 模块请求参数
* @return Api调用地址
*/
public String generateUrl(String actionName, TreeMap<String, Object> params){
return module.generateUrl(actionName, params);
}
/**
* Api调用
* @param actionName 模块动作名称
* @param params 模块请求参数
* @return json字符串
* @throws Exception
*/
public String call(String actionName, TreeMap<String, Object> params) throws Exception
{
for(Method method : module.getClass().getMethods()){
if(method.getName().equals(actionName)){
try {
return (String) method.invoke(module, params);
} catch (Exception e) {
throw e;
}
}
}
return module.call(actionName, params);
}
public void setConfigSecretId(String secretId) {
module.setConfigSecretId(secretId);
}
public void setConfigSecretKey(String secretKey) {
module.setConfigSecretKey(secretKey);
}
public void setConfigDefaultRegion(String region) {
module.setConfigDefaultRegion(region);
}
public void setConfigRequestMethod(String method) {
module.setConfigRequestMethod(method);
}
}