AbstractConfigurationBean findAndInstantiateBean(Element e) throws ConfigurationException {
return findAndInstantiateBean(CONFIG_BEANS,e);
}
private ConfigurationElement findConfigurationElement(Element e, Class<?> bean) {
ConfigurationElement result = null;
ConfigurationElement ces[] = null;
ConfigurationElements configurationElements = bean.getAnnotation(ConfigurationElements.class);
ConfigurationElement configurationElement = bean.getAnnotation(ConfigurationElement.class);
String parentName = ((Element)e.getParentNode()).getTagName();
if(parentName.equals("namedCache"))
parentName = "default";
if (configurationElement != null) {