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