1 | void setInputFile(String file) {↵ | | 1 | void setFilename(String newFilename) {↵
|
2 | setProperty(INPUT_FILE, file);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return the path of the input file↵ | | |
|
6 | * ↵ | | |
|
7 | */↵ | | 3 | FILENAME, newFilename);↵
|
| | | 4 | }↵
|
|
8 | public String getInputFile() {↵ | | 5 | public String getFilename() {↵
|
9 | return getPropertyAsString(INPUT_FILE);↵ | | 6 | return getPropertyAsString(FILENAME);↵
|
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 setRequestData(String newRequestData) {↵
|
17 | setProperty(RANDOM_PATH, path);↵ | | 10 | this.setProperty(R↵
|
18 | }↵ | | |
|
|
19 | /**↵ | | |
|
20 | * return the random path for messages↵ | | |
|
21 | * ↵ | | |
|
22 | */↵ | | 11 | EQUEST, newRequestData);↵
|
| | | 12 | }↵
|
|
23 | public String getRandomPath() {↵ | | 13 | public String getRequestData() {↵
|
24 | return getPropertyAsString(RANDOM_PATH);↵ | | 14 | return getPropertyAsString(REQUEST);↵
|
25 | | | 15 |
|