1 | String getXmlPathLoc() {↵ | | 1 | String getFilename() {↵
|
2 | return getPropertyAsString(XML_PATH_LOC);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * it's kinda obvious, but we ↵ | | 3 | FILENAME);↵
|
| | | 4 | }↵
|
|
6 | state it anyways. Set the xml file with a↵ | | 5 | public void setRequestDat↵
|
7 | * string path.↵ | | |
|
8 | * ↵ | | |
|
9 | * @param filename↵ | | |
|
10 | */↵ | | |
|
11 | public void setXmlFile(String filename) {↵ | | 6 | a(String newRequestData) {↵
|
12 | setProperty(XML_DATA_FILE, filename);↵ | | 7 | this.setProperty(↵
|
13 | }↵ | | |
|
|
14 | /**↵ | | |
|
15 | * Get the file location of the xml file.↵ | | |
|
16 | * ↵ | | |
|
17 | * @return String file path.↵ | | |
|
18 | */↵ | | 8 | REQUEST, newRequestData);↵
|
| | | 9 | }↵
|
|
19 | public String getXmlFile() {↵ | | 10 | public String getRequestData() {↵
|
20 | return getPropertyAsString(XML_DATA_FILE);↵ | | 11 | return getPropertyAsString(REQUEST);↵
|
21 | } | | 12 | }
|