1 | void setConfigChoice(String choice) {↵ | | 1 | void setXmlData(String data) {↵
|
2 | setProperty(CONFIG_CHOICE, choice);↵ | | 2 | setProperty(XML_DATA, data);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * return the config choice↵ | | 5 | * Get the ↵
|
6 | * ↵ | | 6 | XML data as a string.↵
|
| | | 7 | * ↵
|
| | | 8 | * @return String data↵
|
7 | */↵ | | 9 | */↵
|
8 | public String getConfigChoice() {↵ | | 10 | public String getXmlData() {↵
|
9 | return getPropertyAsString(CONFIG_CHOICE);↵ | | 11 | return getPropertyAsString(XML_DATA);↵
|
10 | }↵ | | 12 | }↵
|
|
11 | /**↵ | | 13 | /**↵
|
12 | * set the source of the message↵ | | 14 | * Set the soap action which should be in the form of an URN.↵
|
13 | * ↵ | | 15 | * ↵
|
14 | * @param choice↵ | | 16 | * @param data↵
|
15 | */↵ | | 17 | */↵
|
16 | public void setMessageChoice(String choice) {↵ | | 18 | public void setSoapAction(String data) {↵
|
17 | setProperty(MESSAGE_CHOICE, choice);↵ | | 19 | setProperty(SOAP_ACTION, data);↵
|
18 | | | 20 |
|