Interface ConnectorResponse

All Known Subinterfaces:
CloseableConnectorResponse, HttpResponse, SoapHttpResponse
All Known Implementing Classes:
AbstractCloseableConnectorResponse, AbstractConnectorResponse, HttpResponseImpl, SoapHttpResponseImpl

public interface ConnectorResponse
A connector response representing the result of a connector invocation.
Author:
Daniel Meyer
  • Method Summary

    Modifier and Type
    Method
    Description
    <V> V
    Returns the value of a response parameter or 'null' if no such parameter is set.
    Retrieves the map of output parameters from the response.
  • Method Details

    • 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.