// check whether the bean is an orchestra-annotated bean,
// and if so cache its annotation info for later use.
annotationInfoManager.processBeanAnnotations(realBeanName, beanClass);
// Now deal with any annotation data that must be processed at startup.
AnnotationInfo info = annotationInfoManager
.getAnnotationInfoByBeanName(realBeanName);
if (info != null)
{
processStartupAnnotations(beanDefinition, info);
}