1 | void setUseJNDIProperties(String properties) {↵ | | 1 | void setReadResponse(String read) {↵
|
2 | setProperty(USE_PROPERTIES_FILE, properties);↵ | | 2 | setProperty(READ_RESPONSE, read);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * return whether the sampler should use properties file instead of UI↵ | | 5 | * return whether the sampler should ↵
|
6 | * parameters.↵ | | 6 | read the response↵
|
7 | * ↵ | | 7 | * ↵
|
8 | * @return whether the sampler should use properties file instead of UI parameters.↵ | | 8 | * @return whether the sampler should read the response↵
|
9 | */↵ | | 9 | */↵
|
10 | public String getUseJNDIProperties() {↵ | | 10 | public String getReadResponse() {↵
|
11 | return getPropertyAsString(USE_PROPERTIES_FILE);↵ | | 11 | return getPropertyAsString(READ_RESPONSE);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * return the properties as boolean true/false.↵ | | 14 | * return whether the sampler should read the response as a boolean value↵
|
15 | * ↵ | | 15 | * ↵
|
16 | * @return whether the sampler should use properties file instead of UI parameters.↵ | | 16 | * @return whether the sampler should read the response as a boolean value↵
|
17 | */↵ | | 17 | */↵
|
18 | public boolean getUseJNDIPropertiesAsBoolean() {↵ | | 18 | public boolean getReadResponseAsBoolean() {↵
|
19 | return getPropertyAsBoolean(USE_PROPERTIES_FILE);↵ | | 19 | return getPropertyAsBoolean(READ_RESPONSE);↵
|
20 | | | 20 |
|