Interface ConnectorInfoManager
-
public interface ConnectorInfoManager
Maintains a list ofConnectorInfo
instances, each of which describes a connector that is available.- See Also:
ConnectorInfoManagerFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorInfo
findConnectorInfo(ConnectorKey key)
Returns theConnectorInfo
that is associated with the specifiedConnectorKey
.java.util.List<ConnectorInfo>
getConnectorInfos()
Returns the list ofConnectorInfo
instances.
-
-
-
Method Detail
-
getConnectorInfos
java.util.List<ConnectorInfo> getConnectorInfos()
Returns the list ofConnectorInfo
instances.- Returns:
- the list of
ConnectorInfo
instances.
-
findConnectorInfo
ConnectorInfo findConnectorInfo(ConnectorKey key)
Returns theConnectorInfo
that is associated with the specifiedConnectorKey
.- Parameters:
key
- The key of a connector.- Returns:
- The
ConnectorInfo
ornull
if none was associated with the specified key.
-
-