1 | void setUseAuth(String auth) {↵ | | 1 | void setRequestData(String newRequestData) {↵
|
2 | setProperty(USE_AUTH, auth);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return whether jndi requires authentication↵ | | |
|
6 | * ↵ | | |
|
7 | * @return whether jndi requires authentication↵ | | |
|
8 | */↵ | | 3 | REQUEST, newRequestData);↵
|
| | | 4 | }↵
|
|
9 | public String getUseAuth() {↵ | | 5 | public String getRequestData() {↵
|
10 | return getPropertyAsString(USE_AUTH);↵ | | 6 | return getPropertyAsString(REQUEST);↵
|
11 | }↵ | | 7 | }↵
|
|
12 | /**↵ | | |
|
13 | * set whether the sampler should read the response or not↵ | | |
|
14 | * ↵ | | |
|
15 | * @param read whether the sampler should read the response or not↵ | | |
|
16 | */↵ | | |
|
17 | public void setReadResponse(String read) {↵ | | 8 | public void setTimeout(String newTimeout) {↵
|
18 | setProperty(READ_RESPONSE, read);↵ | | 9 | this.setProperty(FILENAME, newTimeout);↵
|
19 | } | | 10 | }
|