// find the plugin class
String pluginClassName = null;
try {
ResourceFinder finder = new ResourceFinder("META-INF");
Map<String,String> plugins = finder.mapAvailableStrings(DataSourcePlugin.class.getName());
pluginClassName = plugins.get(vendor);
} catch (IOException ignored) {
// couldn't determine the plugins, which isn't fatal
}