1 | String getRandomPath() {↵ | | 1 | String getXmlData() {↵
|
2 | return getPropertyAsString(RANDOM_PATH);↵ | | 2 | return getPropertyAsString(XML_DATA);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the text for the message↵ | | 5 | * Set the soap action which should be in the form of an URN.↵
|
6 | * ↵ | | 6 | * ↵
|
7 | * @param message↵ | | 7 | * @param data↵
|
8 | */↵ | | 8 | */↵
|
9 | public void setTextMessage(String message) {↵ | | 9 | public void setSoapAction(String data) {↵
|
10 | setProperty(TEXT_MSG, message);↵ | | 10 | setProperty(SOAP_ACTION, data);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * return the text for the message↵ | | 13 | * Return the ↵
|
14 | * ↵ | | 14 | soap action string.↵
|
| | | 15 | * ↵
|
| | | 16 | * @return String soap action↵
|
15 | */↵ | | 17 | */↵
|
16 | public String getTextMessage() {↵ | | 18 | public String getSoapAction() {↵
|
17 | return getPropertyAsString(TEXT_MSG);↵ | | 19 | return getPropertyAsString(SOAP_ACTION);↵
|
18 | } | | 20 | }
|