1 | void setInputFile(String file) {↵ | | 1 | void setRequestData(String newRequestData) {↵
|
2 | setProperty(INPUT_FILE, file);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return the path of the input file↵ | | |
|
6 | * ↵ | | |
|
7 | */↵ | | 3 | REQUEST, newRequestData);↵
|
| | | 4 | }↵
|
|
8 | public String getInputFile() {↵ | | 5 | public String getRequestData() {↵
|
9 | return getPropertyAsString(INPUT_FILE);↵ | | 6 | return getPropertyAsString(REQUEST);↵
|
10 | }↵ | | 7 | }↵
|
|
11 | /**↵ | | 8 | ↵
|
12 | * set the random path for the messages↵ | | |
|
13 | * ↵ | | |
|
14 | * @param path↵ | | |
|
15 | */↵ | | |
|
16 | public void setRandomPath(String path) {↵ | | 9 | public void setTimeout(String newTimeout) {↵
|
17 | setProperty(RANDOM_PATH, path);↵ | | 10 | this.setProperty(FILENAME, newTimeout);↵
|
18 | | | 11 |
|