Interface SoapHttpRequest
-
- All Superinterfaces:
ConnectorRequest<SoapHttpResponse>,HttpBaseRequest<SoapHttpRequest,SoapHttpResponse>
- All Known Implementing Classes:
SoapHttpRequestImpl
public interface SoapHttpRequest extends HttpBaseRequest<SoapHttpRequest,SoapHttpResponse>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringHEADER_SOAP_ACTION-
Fields inherited from interface org.camunda.connect.httpclient.HttpBaseRequest
HEADER_CONTENT_TYPE, PARAM_NAME_REQUEST_CONFIG, PARAM_NAME_REQUEST_HEADERS, PARAM_NAME_REQUEST_METHOD, PARAM_NAME_REQUEST_PAYLOAD, PARAM_NAME_REQUEST_URL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetSoapAction()SoapHttpRequestsoapAction(java.lang.String value)Sets the SOAPAction header field (used until SOAP 1.1).-
Methods inherited from interface org.camunda.connect.spi.ConnectorRequest
execute, getRequestParameter, getRequestParameters, setRequestParameter, setRequestParameters
-
Methods inherited from interface org.camunda.connect.httpclient.HttpBaseRequest
configOption, contentType, getConfigOption, getConfigOptions, getContentType, getHeader, getHeaders, getMethod, getPayload, getUrl, header, method, payload, url
-
-
-
-
Field Detail
-
HEADER_SOAP_ACTION
static final java.lang.String HEADER_SOAP_ACTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
soapAction
SoapHttpRequest soapAction(java.lang.String value)
Sets the SOAPAction header field (used until SOAP 1.1).- Parameters:
value- the value to set- Returns:
- this request
-
getSoapAction
java.lang.String getSoapAction()
- Returns:
- the SOAPAction header field value (used until SOAP 1.1) or null if not set
-
-