Properties p = new Properties();
try {
p.load(new FileReader(module));
String _class = p.get("CLASS").toString();
AbstractPlugin plugin = (AbstractPlugin) Class.forName(
_class).newInstance();
container.addPlugin(plugin);
} catch (Throwable e) {
LOG.error(
"Error trying to load module "