1 | void setVarName(String name) {↵ | | 1 | void setUseAuth(String auth) {↵
|
2 | setProperty(VAR_NAME, name);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
| | | 3 | USE_AUTH, auth);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * return whether jndi requires authentication↵
|
| | | 7 | * ↵
|
| | | 8 | * @return whether jndi requires authentication↵
|
| | | 9 | */↵
|
4 | public String getVarName() {↵ | | 10 | public String getUseAuth() {↵
|
5 | return getPropertyAsString(VAR_NAME);↵ | | 11 | return getPropertyAsString(USE_AUTH);↵
|
6 | }↵ | | 12 | }↵
|
|
7 | ↵ | | 13 | /**↵
|
| | | 14 | * set whether the sampler should read the response or not↵
|
| | | 15 | * ↵
|
| | | 16 | * @param read whether the sampler should read the response or not↵
|
| | | 17 | */↵
|
8 | public void setFormat(String format) {↵ | | 18 | public void set↵
|
9 | setProperty(FORMAT, format);↵ | | |
|
10 | | | 19 | ReadResponse(String read) {↵
|
| | | 20 | setProperty(READ_RESPONSE, read);↵
|
| | | 21 |
|