1 | void setUseAuth(String auth) {↵ | | 1 | void setInputFile(String file) {↵
|
2 | setProperty(USE_AUTH, auth);↵ | | 2 | setProperty(INPUT_FILE, file);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * return whether jndi requires authentication↵ | | 5 | * return the↵
|
6 | * ↵ | | |
|
7 | * @return whether jndi requires authentication↵ | | 6 | path of the input file↵
|
| | | 7 | * ↵
|
8 | */↵ | | 8 | */↵
|
9 | public String getUseAuth() {↵ | | 9 | public String getInputFile() {↵
|
10 | return getPropertyAsString(USE_AUTH);↵ | | 10 | return getPropertyAsString(INPUT_FILE);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * set whether the sampler should read the response or not↵ | | 13 | * set the random path for the messages↵
|
14 | * ↵ | | 14 | * ↵
|
15 | * @param read whether the sampler should read the response or not↵ | | 15 | * @param path↵
|
16 | */↵ | | 16 | */↵
|
17 | public void setReadResponse(String read) {↵ | | 17 | public void setRandomPath(String path) {↵
|
18 | setProperty(READ_RESPONSE, read);↵ | | 18 | setProperty(RANDOM_PATH, path);↵
|
19 | } | | 19 | }
|