Remote interface/business methods test.
Verify the following:
The remote interface is allowed to have superinterfaces. Use of interface
inheritance is subject to the RMI-IIOP rules for the definition of remote
interfaces.
Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
if (!(descriptor instanceof EjbSessionDescriptor) &&
!(descriptor instanceof EjbEntityDescriptor)) {
addNaDetails(result, compName);
result.notApplicable(smh.getLocalString
("com.sun.enterprise.tools.verifier.tests.ejb.homeintf.HomeMethodTest.notApplicable1",
"Test apply only to session or entity beans."));
return result;
}
if(descriptor.getRemoteClassName() == null || "".equals(descriptor.getRemoteClassName())){
addNaDetails(result, compName);
result.notApplicable(smh.getLocalString
("com.sun.enterprise.tools.verifier.tests.ejb.intf.InterfaceTest.notApplicable",
"Not Applicable because, EJB [ {0} ] does not have {1} Interface.",
new Object[] {descriptor.getEjbClassName(), "Remote"}));
return result;
}
boolean oneFailed = false;
try {
ClassLoader jcl = getVerifierContext().getClassLoader();
Class c = Class.forName(descriptor.getRemoteClassName(), false, jcl);
Class remote = c;
boolean validRemoteInterface = false;
boolean ok = false;
// walk up the class tree
do {
Class[] interfaces = c.getInterfaces();
if ( interfaces.length == 0 ) {
ok = true;
}
for (Class intf : interfaces) {
logger.log(Level.FINE, getClass().getName() + ".debug1",
new Object[] {intf.getName()});
// The remote interface is allowed to have superinterfaces. Use
// of interface inheritance is subject to the RMI-IIOP rules for
// the definition of remote interfaces.
// requirement is met if one superinterface complies.
if (!ok) {
ok = RmiIIOPUtils.isValidRmiIIOPInterface(intf);
}
// check the methods now.
if (RmiIIOPUtils.isValidRmiIIOPInterfaceMethods(intf)) {
// this interface is valid, continue
if (intf.getName().equals("javax.ejb.EJBObject")) {
validRemoteInterface = true;
break;
}
} else {
oneFailed = true;
addErrorDetails(result, compName);
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".failed",
"Error: [ {0} ] does not properly conform to " +
"rules of RMI-IIOP for superinterfaces. All " +
"enterprise beans remote interfaces are allowed " +
"to have superinterfaces that conform to the " +
"rules of RMI-IIOP for superinterfaces . [ {1} ]" +
" is not a valid remote interface.",
new Object[] {intf.getName(),descriptor.getRemoteClassName()}));
}
}
} while ((((c=c.getSuperclass()) != null) && (!validRemoteInterface)));
if (!ok) { // check that one superinterface met rmiiiop requirement
oneFailed = true;
addErrorDetails(result, compName);
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".failed",
"Error: [ {0} ] does not properly conform to rules of " +
"RMI-IIOP for superinterfaces. All enterprise beans " +
"remote interfaces are allowed to have superinterfaces " +
"that conform to the rules of RMI-IIOP for superinterfaces. " +
" [ {1} ] is not a valid remote interface.",
new Object[] {remote.getName(),descriptor.getRemoteClassName()}));
}
if (validRemoteInterface){
addGoodDetails(result, compName);
result.passed(smh.getLocalString
(getClass().getName() + ".passed",
"[ {0} ] properly conforms to rules of RMI-IIOP for superinterfaces.",
new Object[] {descriptor.getRemoteClassName()}));
}
} catch (ClassNotFoundException e) {
Verifier.debug(e);
addGoodDetails(result, compName);
result.failed(smh.getLocalString
(getClass().getName() + ".failedException",
"Error: Remote interface [ {0} ] does not exist or is not " +
"loadable within bean [ {1} ]",
new Object[] {descriptor.getRemoteClassName(),descriptor.getName()}));
oneFailed = true;
}
if (oneFailed) {
result.setStatus(Result.FAILED);
} else {
result.setStatus(Result.PASSED);
}
return result;