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