1 | boolean isPerUser() {↵ | | 1 | boolean getReadResponseAsBoolean() {↵
|
2 | return getPropertyAsBoolean(PER_USER);↵ | | 2 | return getPropertyAsBoolean(READ_RESPONSE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void setVarName(String name) {↵ | | 4 | ↵
|
5 | setProperty(VAR_NAME, name);↵ | | |
|
6 | }↵ | | |
|
| | | 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 | */↵
|
7 | public String getVarName() {↵ | | 19 | public String getUseJNDIProperties() {↵
|
8 | return getPropertyAsString(VAR_NAME);↵ | | 20 | return getPropertyAsString(USE_PROPERTIES_FILE);↵
|
9 | } | | 21 | }
|