Interface ConnectorInfo
-
public interface ConnectorInfoThe connector meta-data for a given connector.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description APIConfigurationcreateDefaultAPIConfiguration()Loads theConnectorandConfigurationclass in order to determine the proper default configuration parameters.java.lang.StringgetConnectorCategory()Get the category this connector belongs to.java.lang.StringgetConnectorDisplayName()Returns a friendly name suitable for display in the UI.ConnectorKeygetConnectorKey()Uniquely identifies this connector in a given installation.ConnectorMessagesgetMessages()Returns the connector messages for this connector.
-
-
-
Method Detail
-
getConnectorDisplayName
java.lang.String getConnectorDisplayName()
Returns a friendly name suitable for display in the UI. The name will be localized using theCurrentLocale.- Returns:
- The friendly name
-
getMessages
ConnectorMessages getMessages()
Returns the connector messages for this connector.- Returns:
- The connector messages for this connector.
-
getConnectorCategory
java.lang.String getConnectorCategory()
Get the category this connector belongs to.- Returns:
- category name.
-
getConnectorKey
ConnectorKey getConnectorKey()
Uniquely identifies this connector in a given installation.- Returns:
- The connector key
-
createDefaultAPIConfiguration
APIConfiguration createDefaultAPIConfiguration()
Loads theConnectorandConfigurationclass in order to determine the proper default configuration parameters.
-
-