org.camunda.connect.spi
Interface ConnectorResponse

All Known Subinterfaces:
CloseableConnectorResponse
All Known Implementing Classes:
AbstractCloseableConnectorResponse, AbstractConnectorResponse

public interface ConnectorResponse

A connector response representing the result of a connector invocation.

Author:
Daniel Meyer

Method Summary
<V> V
getResponseParameter(String name)
          Returns the value of a response parameter or 'null' if no such parameter is set.
 Map<String,Object> getResponseParameters()
          Retrieves the map of output parameters from the response.
 

Method Detail

getResponseParameters

Map<String,Object> getResponseParameters()
Retrieves the map of output parameters from the response.

Returns:
the map of output parameters.

getResponseParameter

<V> V getResponseParameter(String name)
Returns the value of a response parameter or 'null' if no such parameter is set.

Parameters:
name - the name of the response parameter
Returns:
the value of the response parameter of null.


Copyright © 2014 camunda services GmbH. All rights reserved.