1 | boolean isMonitor() {↵ | | 1 | boolean getReadResponseAsBoolean() {↵
|
2 | return this.getPropertyAsBoolean(MONITOR);↵ | | 2 | return getPropertyAsBoolean(↵
|
3 | }↵ | | |
|
|
4 | public void setImplementation(String value) {↵ | | |
|
5 | this.setProperty(IMPLEMENTATION, value);↵ | | |
|
6 | }↵ | | |
|
|
7 | public String getImplementation() {↵ | | |
|
8 | ↵ | | 3 | READ_RESPONSE);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * if the sampler should use jndi.properties file, call the method with true↵
|
| | | 7 | * ↵
|
| | | 8 | * @param properties↵
|
| | | 9 | */↵
|
| | | 10 | public void setUseJNDIProperties(String properties) {↵
|
| | | 11 | setProperty(USE_PROPERTIES_FILE, properties);↵
|
| | | 12 | }↵
|
|
| | | 13 | /**↵
|
| | | 14 | * return whether the sampler should use properties file instead of UI↵
|
| | | 15 | * parameters.↵
|
| | | 16 | * ↵
|
| | | 17 | * @return whether the sampler should use properties file instead of UI parameters.↵
|
| | | 18 | */↵
|
| | | 19 | public String getUseJNDIProperties() {↵
|
9 | return this.getPropertyAsString(IMPLEMENTATION);↵ | | 20 | return getPropertyAsString(↵
|
10 | ↵ | | 21 | USE_PROPERTIES_FILE);↵
|
11 | } | | 22 | }
|