Interface OpenConnectorDefinition
- All Known Implementing Classes:
EgeriaOpenConnectorDefinition
public interface OpenConnectorDefinition
Provides a standard definition for open connectors with simple connector provider behaviour.
This information enables the connector provider to inherit from OpenConnectorProviderBase
and hence have a minimal implementation.
-
Method Summary
Modifier and TypeMethodDescriptionintReturn the component identifier for the connector.Return the description of the connector type.Return the development status of the connector.Return the display name of the connector type.Return the class name of the connector provider that implements this connector.Return the qualified name of the connector type.Return the unique identifier for the connector type.Return the link to the wiki page for this connector.
-
Method Details
-
getConnectorComponentId
int getConnectorComponentId()Return the component identifier for the connector.- Returns:
- int
-
getConnectorTypeGUID
String getConnectorTypeGUID()Return the unique identifier for the connector type.- Returns:
- string
-
getConnectorQualifiedName
String getConnectorQualifiedName()Return the qualified name of the connector type.- Returns:
- string
-
getConnectorDisplayName
String getConnectorDisplayName()Return the display name of the connector type.- Returns:
- string
-
getConnectorDescription
String getConnectorDescription()Return the description of the connector type.- Returns:
- string
-
getConnectorWikiPage
String getConnectorWikiPage()Return the link to the wiki page for this connector.- Returns:
- string
-
getConnectorProviderClassName
String getConnectorProviderClassName()Return the class name of the connector provider that implements this connector.- Returns:
- string
-
getConnectorDevelopmentStatus
ComponentDevelopmentStatus getConnectorDevelopmentStatus()Return the development status of the connector.- Returns:
- ComponentDevelopmentStatus enum
-