Modifier and Type | Method and Description |
---|---|
List<ConnectorDto> |
DefaultCamelConnectorCatalog.findConnector(boolean latestVersionOnly) |
List<ConnectorDto> |
CamelConnectorCatalog.findConnector(boolean latestVersionOnly)
Finds all the connectors from the catalog
|
List<ConnectorDto> |
MemoryConnectorDataStore.findConnector(String filter,
boolean latestVersionOnly) |
List<ConnectorDto> |
DefaultCamelConnectorCatalog.findConnector(String filter,
boolean latestVersionOnly) |
List<ConnectorDto> |
ConnectorDataStore.findConnector(String filter,
boolean latestVersionOnly)
Find all the connectors that matches the maven coordinate, name, label or description from the catalog
|
List<ConnectorDto> |
CamelConnectorCatalog.findConnector(String filter,
boolean latestVersionOnly)
Find all the connectors that matches the maven coordinate, name, label or description from the catalog
|
Modifier and Type | Method and Description |
---|---|
void |
MemoryConnectorDataStore.addConnector(ConnectorDto dto,
String connectorJson,
String connectorSchemaJson,
String componentSchemaJson) |
void |
ConnectorDataStore.addConnector(ConnectorDto dto,
String connectorJson,
String connectorSchemaJson,
String componentSchemaJson)
Adds or updates the connector to the catalog
|
String |
MemoryConnectorDataStore.componentSchemaJSon(ConnectorDto dto) |
String |
ConnectorDataStore.componentSchemaJSon(ConnectorDto dto)
Returns the camel-component-schema json file for the given connector with the Maven coordinate
|
String |
MemoryConnectorDataStore.connectorJSon(ConnectorDto dto) |
String |
ConnectorDataStore.connectorJSon(ConnectorDto dto)
Returns the camel-connector json file for the given connector with the Maven coordinate
|
String |
MemoryConnectorDataStore.connectorSchemaJSon(ConnectorDto dto) |
String |
ConnectorDataStore.connectorSchemaJSon(ConnectorDto dto)
Returns the camel-connector-schema json file for the given connector with the Maven coordinate
|
boolean |
MemoryConnectorDataStore.hasConnector(ConnectorDto dto) |
boolean |
ConnectorDataStore.hasConnector(ConnectorDto dto)
Is the connector already registered in the catalog
|
void |
MemoryConnectorDataStore.removeConnector(ConnectorDto dto) |
void |
ConnectorDataStore.removeConnector(ConnectorDto dto)
Removes the connector from the catalog
|
Apache Camel