1 | String getXmlData() {↵ | | 1 | String getUseAuth() {↵
|
2 | return getPropertyAsString(XML_DATA);↵ | | 2 | return getPropertyAsString(USE_AUTH);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Set the soap action which should be in the form of an URN.↵ | | 5 | * set whether the sampler should ↵
|
6 | * ↵ | | |
|
7 | * @param data↵ | | 6 | read the response or not↵
|
| | | 7 | * ↵
|
| | | 8 | * @param read whether the sampler should read the response or not↵
|
8 | */↵ | | 9 | */↵
|
9 | public void setSoapAction(String data) {↵ | | 10 | public void setReadResponse(String read) {↵
|
10 | setProperty(SOAP_ACTION, data);↵ | | 11 | setProperty(READ_RESPONSE, read);↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * Return the soap action string.↵ | | 14 | * return whether the sampler should read the response↵
|
14 | * ↵ | | 15 | * ↵
|
15 | * @return String soap action↵ | | 16 | * @return whether the sampler should read the response↵
|
16 | */↵ | | 17 | */↵
|
17 | public String getSoapAction() {↵ | | 18 | public String getReadResponse() {↵
|
18 | return getPropertyAsString(SOAP_ACTION);↵ | | 19 | return getPropertyAsString(READ_RESPONSE);↵
|
19 | | | 20 |
|