1 | String getMessageChoice() {↵ | | 1 | String getUseAuth() {↵
|
2 | return getPropertyAsString(MESSAGE_CHOICE);↵ | | 2 | return getPropertyAsString(USE_AUTH);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the input file for the publisher↵ | | 5 | * set ↵
|
6 | * ↵ | | |
|
7 | * @param file↵ | | 6 | whether the sampler should read the response or not↵
|
| | | 7 | * ↵
|
| | | 8 | * @param read whether the sampler should read the response or not↵
|
8 | */↵ | | 9 | */↵
|
9 | public void setInputFile(String file) {↵ | | 10 | public void setReadResponse(String read) {↵
|
10 | setProperty(INPUT_FILE, file);↵ | | 11 | setProperty(READ_RESPONSE, read);↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * return the path of the input file↵ | | 14 | * return ↵
|
14 | * ↵ | | 15 | whether the sampler should read the response↵
|
| | | 16 | * ↵
|
| | | 17 | * @return whether the sampler should read the response↵
|
15 | */↵ | | 18 | */↵
|
16 | public String getInputFile() {↵ | | 19 | public String getReadResponse() {↵
|
17 | return getPropertyAsString(INPUT_FILE);↵ | | 20 | return getPropertyAsString(READ_RESPONSE);↵
|
18 | | | 21 |
|