run an individual verifier test against a declared method of the
local interface.
boolean businessMethodFound, signaturesMatch;
ComponentNameConstructor compName = null;
try {
compName = getVerifierContext().getComponentNameConstructor();
// retrieve the EJB Class Methods
ClassLoader jcl = getVerifierContext().getClassLoader();
Class EJBClass = Class.forName(descriptor.getEjbClassName(), false, jcl);
Class[] methodParameterTypes = method.getParameterTypes();
// start do while loop here....
do {
// try and find the business method in the EJB Class Methods
businessMethodFound = false;
signaturesMatch = false;
for (Method businessMethod : EJBClass.getDeclaredMethods()) {
if (method.getName().equals(businessMethod.getName())) {
businessMethodFound = true;
// check the rest of the signature
Class[] businessMethodParameterTypes = businessMethod.getParameterTypes();
if (Arrays.equals(methodParameterTypes,businessMethodParameterTypes)) {
signaturesMatch = true;
break;
} // if the bean & local/remote interface method param values match
} 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 && signaturesMatch) {
addGoodDetails(result, compName);
result.addGoodDetails(smh.getLocalString
(getClass().getName() + ".passed",
"The corresponding business method with a matching " +
"parameters was found."));
return true;
} else if (businessMethodFound && !signaturesMatch) {
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 && signaturesMatch)));
if (!signaturesMatch) {
addErrorDetails(result, compName);
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".failed",
"Error: No corresponding business method with matching " +
"arguments 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;