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