run an individual verifier test against a declared method of the
local/remote interface.
boolean businessMethodFound, returnMatch;
ComponentNameConstructor compName = null;
try {
compName = getVerifierContext().getComponentNameConstructor();
Class methodReturnType = method.getReturnType();
// retrieve the EJB Class Methods
ClassLoader jcl = getVerifierContext().getClassLoader();
Class EJBClass = Class.forName(descriptor.getEjbClassName(), false, jcl);
// start do while loop here....
do {
Method [] businessMethods = EJBClass.getDeclaredMethods();
// try and find the business method in the EJB Class Methods
businessMethodFound = false;
returnMatch = false;
for (Method businessMethod : businessMethods) {
if (method.getName().equals(businessMethod.getName())) {
businessMethodFound = true;
Class businessMethodReturnType = businessMethod.getReturnType();
if (methodReturnType.equals(businessMethodReturnType)) {
returnMatch = true;
break;
} // if the bean & local/remote interface method return value matches
} else {
continue;
} // if the bean & local/remote interface method match
} // for all the bean class business methods
// now display the appropriate results for this particular business
// method
if (businessMethodFound && returnMatch) {
addGoodDetails(result, compName);
result.addGoodDetails(smh.getLocalString
(getClass().getName() + ".passed",
"The corresponding business method with a matching " +
"return type was found."));
return true;
} else if(businessMethodFound && !returnMatch) {
logger.log(Level.FINE, getClass().getName() + ".debug1",
new Object[] {method.getDeclaringClass().getName(),method.getName()});
logger.log(Level.FINE, getClass().getName() + ".debug3",
new Object[] {method.getName()});
logger.log(Level.FINE, getClass().getName() + ".debug2");
}
} while (((EJBClass = EJBClass.getSuperclass()) != null) && (!(businessMethodFound && returnMatch)));
if (!returnMatch) {
addErrorDetails(result, compName);
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".failed",
"Error: No corresponding business method with matching " +
"return type was found for method [ {0} ].",
new Object[] {method.getName()}));
}
} catch (ClassNotFoundException e) {
Verifier.debug(e);
addErrorDetails(result, compName);
result.failed(smh.getLocalString
(getClass().getName() + ".failedException",
"Error: "+ getInterfaceType() +"interface [ {0} ] does not " +
"exist or is not loadable within bean [ {1} ]",
new Object[] {getClassName(descriptor),descriptor.getName()}));
}
return false;