Package org.camunda.connect.spi
Interface ConnectorProvider
-
public interface ConnectorProviderProvides aConnectorwith a unique id.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Connector<?>createConnectorInstance()Create a new instance of the connector created by this factory.java.lang.StringgetConnectorId()Returns the unique id of the connector created by this factory.
-
-
-
Method Detail
-
getConnectorId
java.lang.String getConnectorId()
Returns the unique id of the connector created by this factory.
-
createConnectorInstance
Connector<?> createConnectorInstance()
Create a new instance of the connector created by this factory.
-
-