// at this time only extensions to web modules
for (Object o : application.getExtnBundleDescriptors()) {
BundleDescriptor bundle =
BundleDescriptor.class.cast(o);
if(bundle instanceof WebBundleDescriptor ) {
allPUs.addAll(bundle.findReferencedPUs());
}
}
return allPUs;
}