Class SoapHttpRequestImpl
- java.lang.Object
-
- org.camunda.connect.impl.AbstractConnectorRequest<R>
-
- org.camunda.connect.httpclient.impl.AbstractHttpRequest<SoapHttpRequest,SoapHttpResponse>
-
- org.camunda.connect.httpclient.soap.impl.SoapHttpRequestImpl
-
- All Implemented Interfaces:
HttpBaseRequest<SoapHttpRequest,SoapHttpResponse>,SoapHttpRequest,ConnectorRequest<SoapHttpResponse>
public class SoapHttpRequestImpl extends AbstractHttpRequest<SoapHttpRequest,SoapHttpResponse> implements SoapHttpRequest
-
-
Field Summary
Fields Modifier and Type Field Description protected static SoapHttpConnectorLoggerLOG-
Fields inherited from class org.camunda.connect.impl.AbstractConnectorRequest
connector, requestParameters
-
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
-
Fields inherited from interface org.camunda.connect.httpclient.soap.SoapHttpRequest
HEADER_SOAP_ACTION
-
-
Constructor Summary
Constructors Constructor Description SoapHttpRequestImpl(SoapHttpConnector connector)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSoapAction()SoapHttpRequestmethod(java.lang.String method)Sets the method of this request.SoapHttpRequestsoapAction(java.lang.String value)Sets the SOAPAction header field (used until SOAP 1.1).-
Methods inherited from class org.camunda.connect.httpclient.impl.AbstractHttpRequest
configOption, contentType, delete, get, getConfigOption, getConfigOptions, getContentType, getHeader, getHeaders, getMethod, getPayload, getUrl, head, header, options, patch, payload, post, put, trace, url
-
Methods inherited from class org.camunda.connect.impl.AbstractConnectorRequest
execute, getRequestParameter, getRequestParameters, isRequestValid, setRequestParameter, setRequestParameters
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
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, payload, url
-
-
-
-
Field Detail
-
LOG
protected static final SoapHttpConnectorLogger LOG
-
-
Constructor Detail
-
SoapHttpRequestImpl
public SoapHttpRequestImpl(SoapHttpConnector connector)
-
-
Method Detail
-
soapAction
public SoapHttpRequest soapAction(java.lang.String value)
Description copied from interface:SoapHttpRequestSets the SOAPAction header field (used until SOAP 1.1).- Specified by:
soapActionin interfaceSoapHttpRequest- Parameters:
value- the value to set- Returns:
- this request
-
getSoapAction
public java.lang.String getSoapAction()
- Specified by:
getSoapActionin interfaceSoapHttpRequest- Returns:
- the SOAPAction header field value (used until SOAP 1.1) or null if not set
-
method
public SoapHttpRequest method(java.lang.String method)
Description copied from interface:HttpBaseRequestSets the method of this request.- Specified by:
methodin interfaceHttpBaseRequest<SoapHttpRequest,SoapHttpResponse>- Overrides:
methodin classAbstractHttpRequest<SoapHttpRequest,SoapHttpResponse>- Parameters:
method- the method to set- Returns:
- this request
-
-