public ActionBeanSource readBeanSource(Class actionClass, Annotation annotation)
{
Assert.notNull(actionClass);
Assert.notNull(annotation);
SpringBean actionBean = (SpringBean) annotation;
return new SpringActionBeanSource(actionClass, actionBean.name());
}