Interface SoapHttpRequest
-
- All Superinterfaces:
org.camunda.connect.spi.ConnectorRequest<SoapHttpResponse>,org.camunda.connect.httpclient.HttpBaseRequest<SoapHttpRequest,SoapHttpResponse>
- All Known Implementing Classes:
SoapHttpRequestImpl
public interface SoapHttpRequest extends org.camunda.connect.httpclient.HttpBaseRequest<SoapHttpRequest,SoapHttpResponse>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringHEADER_SOAP_ACTION
-
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).
-
-
-
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
-
-