// Transaction attributes must not be specified for the methods of a session
// bean's home interface.
if (descriptor instanceof EjbSessionDescriptor) {
String transactionType = descriptor.getTransactionType();
Context context = getVerifierContext();
ClassLoader jcl = context.getClassLoader();
if (EjbDescriptor.CONTAINER_TRANSACTION_TYPE.equals(transactionType)) {
boolean oneFailed = false;
if(descriptor.getHomeClassName() != null && !"".equals(descriptor.getHomeClassName())) {
Class superclass = Class.forName(descriptor.getHomeClassName(), false, getVerifierContext().getClassLoader());
do {