1 | String getXmlData() {↵ | | 1 | String getMethod() {↵
|
2 | return getPropertyAsString(XML_DATA);↵ | | 2 | return getPropertyAsString(METHOD);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Set the soap action which should be in the form of an URN.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param data↵ | | |
|
8 | */↵ | | |
|
9 | public void setSoapAction(String data) {↵ | | 5 | public void setContentEncoding(String value) {↵
|
10 | setProperty(SOAP_ACTION, data);↵ | | 6 | setProperty(↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * Return the soap action string.↵ | | |
|
14 | * ↵ | | |
|
15 | * @return String soap action↵ | | |
|
16 | */↵ | | 7 | CONTENT_ENCODING, value);↵
|
| | | 8 | }↵
|
|
17 | public String getSoapAction() {↵ | | 9 | public String getContentEncoding() {↵
|
18 | return getPropertyAsString(SOAP_ACTION);↵ | | 10 | return getPropertyAsString(CONTENT_ENCODING);↵
|
19 | } | | 11 | }
|