1 | String getPassword() {↵ | | 1 | String getXmlPathLoc() {↵
|
2 | return getPropertyAsString(CREDENTIALS);↵ | | 2 | return getPropertyAsString(XML_PATH_LOC);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the number of iterations the sampler should aggregate↵ | | 5 | * it's kinda obvious, but we state it anyways. Set the xml file with a↵
|
| | | 6 | * string path.↵
|
6 | * ↵ | | 7 | * ↵
|
7 | * @param count↵ | | 8 | * @param filename↵
|
8 | */↵ | | 9 | */↵
|
9 | public void setIterations(String count) {↵ | | 10 | public void set↵
|
10 | setProperty(ITERATIONS, count↵ | | 11 | XmlFile(String filename) {↵
|
11 | );↵ | | 12 | setProperty(XML_DATA_FILE, filename);↵
|
12 | }↵ | | 13 | }↵
|
|
13 | /**↵ | | 14 | /**↵
|
14 | * get the iterations as string↵ | | 15 | * Get the ↵
|
15 | * ↵ | | |
|
16 | * @return the number of iterations↵ | | 16 | file location of the xml file.↵
|
| | | 17 | * ↵
|
| | | 18 | * @return String file path.↵
|
17 | */↵ | | 19 | */↵
|
18 | public String getIterations() {↵ | | 20 | public String getXmlFile() {↵
|
19 | return getPropertyAsString(ITERATIONS);↵ | | 21 | return getPropertyAsString(XML_DATA_FILE);↵
|
20 | | | 22 |
|