1 | void setUseAuth(String auth) {↵ | | 1 | void setRefName(String refName) {↵
|
2 | setProperty(USE_AUTH, auth);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return whether jndi requires authentication↵ | | |
|
6 | * ↵ | | |
|
7 | * @return whether jndi requires authentication↵ | | |
|
8 | */↵ | | 3 | REFNAME, refName);↵
|
| | | 4 | }↵
|
|
9 | public String getUseAuth() {↵ | | 5 | public String getRefName() {↵
|
10 | return getPropertyAsString(USE_AUTH);↵ | | 6 | return getPropertyAsString(↵
|
11 | }↵ | | |
|
|
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 | ↵ | | 7 | REFNAME);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
18 | public void setReadResponse(String read) {↵ | | 10 | public void setDefaultValue(String val) {↵
|
19 | setProperty(READ_RESPONSE, read);↵ | | 11 | setProperty(↵
|
20 | }↵ | | |
|
|
21 | /**↵ | | |
|
22 | * return whether the sampler should read the response↵ | | |
|
23 | * ↵ | | |
|
24 | * @return whether the sampler should read the response↵ | | |
|
25 | */↵ | | 12 | DEFAULT, val);↵
|
| | | 13 | }↵
|
|
26 | public String getReadResponse() {↵ | | 14 | public String getDefaultValue() {↵
|
27 | return getPropertyAsString(READ_RESPONSE);↵ | | 15 | return getPropertyAsString(DEFAULT);↵
|
28 | | | 16 |
|