Package org.camunda.connect.impl
Class AbstractConnectorResponse
java.lang.Object
org.camunda.connect.impl.AbstractConnectorResponse
- All Implemented Interfaces:
- ConnectorResponse
- Direct Known Subclasses:
- AbstractCloseableConnectorResponse
- Author:
- Daniel Meyer
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected abstract voidcollectResponseParameters(Map<String, Object> responseParameters) To be implemented by subclasses for collecting the generic response parameters of a response.<V> VgetResponseParameter(String name) Returns the value of a response parameter or 'null' if no such parameter is set.Retrieves the map of output parameters from the response.
- 
Field Details- 
responseParameters
 
- 
- 
Constructor Details- 
AbstractConnectorResponsepublic AbstractConnectorResponse()
 
- 
- 
Method Details- 
getResponseParametersDescription copied from interface:ConnectorResponseRetrieves the map of output parameters from the response.- Specified by:
- getResponseParametersin interface- ConnectorResponse
- Returns:
- the map of output parameters.
 
- 
getResponseParameterDescription copied from interface:ConnectorResponseReturns the value of a response parameter or 'null' if no such parameter is set.- Specified by:
- getResponseParameterin interface- ConnectorResponse
- Parameters:
- name- the name of the response parameter
- Returns:
- the value of the response parameter of null.
 
- 
collectResponseParametersTo be implemented by subclasses for collecting the generic response parameters of a response.- Parameters:
- responseParameters- a map to save the response parameters in
 
 
-