}
try {
objectFactory.getClassInstance(actionClass.getName());
} catch (ClassNotFoundException e) {
logger.error("Object Factory was unable to load class {}", actionClass.getName());
throw new StrutsException("Object Factory was unable to load class " + actionClass.getName(),
e);
}
String[] beanNames = beanNameFinder.getBeanNames(actionClass);
switch (beanNames.length) {
case 0: