1 | String getXmlData() {↵ | | 1 | String getUseAuth() {↵
|
2 | return getPropertyAsString(XML_DATA);↵ | | 2 | return getPropertyAsString(USE_AUTH);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * it's kinda obvious, but we state it anyways. Set the xml file with a↵ | | |
|
6 | * string path.↵ | | |
|
7 | *↵ | | |
|
8 | * @param filename↵ | | |
|
9 | ↵ | | 5 | * set whether the sampler should read the response or not↵
|
| | | 6 | * ↵
|
| | | 7 | * @param read whether the sampler should read the response or not↵
|
10 | */↵ | | 8 | */↵
|
11 | public void setXmlFile(String filename) {↵ | | 9 | public void set↵
|
12 | setProperty(XML_DATA_FILE, filename);↵ | | |
|
13 | ↵ | | 10 | ReadResponse(String read) {↵
|
| | | 11 | setProperty(READ_RESPONSE, read);↵
|
14 | }↵ | | 12 | }↵
|
|
15 | /**↵ | | 13 | /**↵
|
16 | * Get the file location of the xml file.↵ | | 14 | * ret↵
|
17 | *↵ | | |
|
18 | * @return String file path.↵ | | |
|
19 | ↵ | | 15 | urn whether the sampler should read the response↵
|
| | | 16 | * ↵
|
| | | 17 | * @return whether the sampler should read the response↵
|
20 | */↵ | | 18 | */↵
|
21 | public String getXmlFile() {↵ | | 19 | public String get↵
|
22 | ↵ | | 20 | ReadResponse() {↵
|
23 | return getPropertyAsString(XML_DATA_FILE);↵ | | 21 | return getPropertyAsString(READ_RESPONSE);↵
|
24 | | | 22 |
|