use of com.cognifide.apm.core.actions.scanner.AnnotatedClassRegistry in project APM by Cognifide.
the class ActionMapperRegistryImpl method activate.
@Activate
public void activate(ComponentContext componentContext) {
registry = new AnnotatedClassRegistry(componentContext.getBundleContext(), BUNDLE_HEADER, Mapper.class);
registry.addChangeListener(this);
registry.open();
}
Aggregations