private boolean commonToBothInterfaces(String home, EjbDescriptor descriptor) {
boolean findByPrimaryKeyMethodFound = false;
boolean oneFailed = false;
try {
// retrieve the home interface methods
VerifierTestContext context = getVerifierContext();
ClassLoader jcl = context.getClassLoader();
Class homeInterfaceClass = Class.forName(home, false, getVerifierContext().getClassLoader());
Method [] ejbFinderMethods = homeInterfaceClass.getDeclaredMethods();
for (int j = 0; j < ejbFinderMethods.length; j++) {
if (ejbFinderMethods[j].getName().equals("findByPrimaryKey")) {
// Every entity enterprise Bean class must define the