Package org.camunda.connect.spi

Examples of org.camunda.connect.spi.ConnectorResponse


    ConnectorRequest<?> request = connectorInstance.createRequest();
    applyInputParameters(execution, request);

    try {
      // execute the request and obtain a response:
      ConnectorResponse response = request.execute();
      applyOutputParameters(execution, response);
    } catch(Exception e) {
      throw new ProcessEngineException("Exception while invoking connector "+e.getMessage(), e);
    }
View Full Code Here

TOP

Related Classes of org.camunda.connect.spi.ConnectorResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.