this.options = (Map<String, Object>) configuration.get(Globals.OPTIONS);
klass = ClassUtilities.loadClass((String) configuration.get("class"));
}
public Helper getInstance(MicroContext context) throws Exception {
Helper helper = (Helper) klass.newInstance();
helper.register(context, options);
return helper;
}