protected ParameterResolverFactory createParameterResolverFactory() {
   return ClasspathParameterResolverFactory.forClass(getClass());
 }
 /**
  * Wraps the given <code>annotatedEventListener</code>, allowing it to be subscribed to an Event
  * Bus.
  *
  * @param annotatedEventListener the annotated event listener
  */
 public AnnotationEventListenerAdapter(Object annotatedEventListener) {
   this(
       annotatedEventListener,
       ClasspathParameterResolverFactory.forClass(annotatedEventListener.getClass()));
 }