Class LocalConnectorInfoManagerImpl
- java.lang.Object
-
- org.identityconnectors.framework.impl.api.local.LocalConnectorInfoManagerImpl
-
- All Implemented Interfaces:
ConnectorInfoManager
public class LocalConnectorInfoManagerImpl extends Object implements ConnectorInfoManager
-
-
Constructor Summary
Constructors Constructor Description LocalConnectorInfoManagerImpl(List<URL> bundleURLs, ClassLoader bundleParentClassLoader)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static APIConfigurationImpl
createDefaultAPIConfiguration(LocalConnectorInfoImpl localInfo)
Create an instance of theAPIConfiguration
object to setup the framework etc..ConnectorInfo
findConnectorInfo(ConnectorKey key)
Returns theConnectorInfo
that is associated with the specifiedConnectorKey
.List<ConnectorInfo>
getConnectorInfos()
Returns the list ofConnectorInfo
instances.static ConnectorMessagesImpl
loadMessageCatalog(Set<String> bundleContents, ClassLoader loader, Class<? extends Connector> connector)
-
-
-
Constructor Detail
-
LocalConnectorInfoManagerImpl
public LocalConnectorInfoManagerImpl(List<URL> bundleURLs, ClassLoader bundleParentClassLoader) throws ConfigurationException
- Throws:
ConfigurationException
-
-
Method Detail
-
createDefaultAPIConfiguration
public static APIConfigurationImpl createDefaultAPIConfiguration(LocalConnectorInfoImpl localInfo)
Create an instance of theAPIConfiguration
object to setup the framework etc..
-
loadMessageCatalog
public static ConnectorMessagesImpl loadMessageCatalog(Set<String> bundleContents, ClassLoader loader, Class<? extends Connector> connector) throws ConfigurationException
- Throws:
ConfigurationException
-
findConnectorInfo
public ConnectorInfo findConnectorInfo(ConnectorKey key)
Description copied from interface:ConnectorInfoManager
Returns theConnectorInfo
that is associated with the specifiedConnectorKey
.- Specified by:
findConnectorInfo
in interfaceConnectorInfoManager
- Parameters:
key
- The key of a connector.- Returns:
- The
ConnectorInfo
ornull
if none was associated with the specified key.
-
getConnectorInfos
public List<ConnectorInfo> getConnectorInfos()
Description copied from interface:ConnectorInfoManager
Returns the list ofConnectorInfo
instances.- Specified by:
getConnectorInfos
in interfaceConnectorInfoManager
- Returns:
- the list of
ConnectorInfo
instances.
-
-