Package org.camunda.connect.spi

Examples of org.camunda.connect.spi.Connector


    TestConnector.responseParameters.clear();
    TestConnector.requestParameters = null;
  }

  public void testConnectorsRegistered() {
    Connector http = Connectors.getConnector(HttpConnector.ID);
    assertNotNull(http);
    Connector soap = Connectors.getConnector(SoapHttpConnector.ID);
    assertNotNull(soap);
    Connector test = Connectors.getConnector(TestConnector.ID);
    assertNotNull(test);
  }
View Full Code Here

TOP

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

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.