return;
}
String[] beanNames = beanFactory.getBeanNamesForType(type);
ConfigurableApplicationContext ctxt = (ConfigurableApplicationContext)beanFactory;
// Take any bean name or alias that has a web service annotation
for (int i = 0; i < beanNames.length; i++) {
BeanDefinition def = ctxt.getBeanFactory().getBeanDefinition(beanNames[i]);
if (!beanFactory.isSingleton(beanNames[i]) || def.isAbstract()) {
continue;
}
try {
Collection<?> ids = null;
PropertyValue pv = def.getPropertyValues().getPropertyValue(idsProperty);
if (pv != null) {
Object value = pv.getValue();
if (!(value instanceof Collection)) {
throw new RuntimeException("The property " + idsProperty + " must be a collection!");
}
if (value instanceof Mergeable) {
if (!((Mergeable)value).isMergeEnabled()) {
ids = (Collection<?>)value;
}
} else {
ids = (Collection<?>)value;
}
}
if (ids == null && staticFieldName != null) {
Class<?> cls = context.getType(beanNames[i]);
try {
Field f = cls.getDeclaredField(staticFieldName);
f.setAccessible(true);
Collection<QName> sids = CastUtils.cast((Collection<?>)f.get(null));
if (sids != null) {
ids = new ArrayList<QName>(sids);
}
} catch (Exception ex) {
//ignore, fall through
}
}
// if values are not legal keys (for lazy-init bean definitions id values may be
// BeanDefinitionHolders), load the bean and get its id values instead
// for BeanReference type values, simply resolve reference
//
if (null != ids) {
Collection<Object> checked = new ArrayList<Object>(ids.size());
for (Object id : ids) {
if (id instanceof QName) {
checked.add(id);
} else if (id instanceof BeanReference) {
BeanReference br = (BeanReference)id;
Object refId = context.getBean(br.getBeanName());
checked.add(refId);
} else if (id instanceof BeanDefinitionHolder) {
BeanDefinitionHolder bdh = (BeanDefinitionHolder)id;
if (QName.class.getName().equals(bdh.getBeanDefinition().getBeanClassName())) {
try {
java.util.List l = bdh.getBeanDefinition().getConstructorArgumentValues()
.getGenericArgumentValues();
ConstructorArgumentValues.ValueHolder v
= (ConstructorArgumentValues.ValueHolder)l.get(0);
TypedStringValue nss = (TypedStringValue)v.getValue();
v = (ConstructorArgumentValues.ValueHolder)l.get(1);
TypedStringValue ln = (TypedStringValue)v.getValue();
checked.add(new QName(nss.getValue(), ln.getValue()));
} catch (Exception ex) {
//ignore
break;
}
} else {
break;
}
} else {
break;
}
}
if (checked.size() < ids.size()) {
ids = null;
} else {
ids = checked;
}
}
if (ids == null) {
ids = getIds(ctxt.getBean(beanNames[i]));
if (ids == null) {
continue;
}
}
for (Object id : ids) {
QName key = (QName)id;
getBeanListForId(key).add(beanNames[i]);
}
} catch (BeanIsAbstractException e) {
// The bean is abstract, we won't be doing anything with it.
continue;
}
}
processBeans(ctxt.getParent());
}