Interface ConnectorInfo
-
public interface ConnectorInfo
The connector meta-data for a given connector.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description APIConfiguration
createDefaultAPIConfiguration()
Loads theConnector
andConfiguration
class in order to determine the proper default configuration parameters.java.lang.String
getConnectorCategory()
Get the category this connector belongs to.java.lang.String
getConnectorDisplayName()
Returns a friendly name suitable for display in the UI.ConnectorKey
getConnectorKey()
Uniquely identifies this connector in a given installation.ConnectorMessages
getMessages()
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 theConnector
andConfiguration
class in order to determine the proper default configuration parameters.
-
-