Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit a1c87af

Browse files
committed
增加动态数据的参数化接口
1 parent d76e27b commit a1c87af

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
* http://surenpi.com
3+
*/
4+
package org.suren.autotest.web.framework.data;
5+
6+
import java.util.Map;
7+
8+
/**
9+
* @author suren
10+
* @date 2017年3月24日 下午10:20:06
11+
*/
12+
public interface DynamicDataSource
13+
{
14+
15+
/**
16+
* 动态参数
17+
* @param globalMap
18+
*/
19+
void setGlobalMap(Map<String, Object> globalMap);
20+
21+
/**
22+
* 动态参数
23+
* @return
24+
*/
25+
Map<String, Object> getGlobalMap();
26+
27+
/**
28+
* @return 唯一标识数据源的名称
29+
*/
30+
String getName();
31+
}

0 commit comments

Comments
 (0)