Each container transaction element consists of a list of one or more
method elements, and the trans-attribute element. The container transaction
element specifies that all the listed methods are assigned the specified
transaction attribute value.
Style 1:
EJBNAME
*
This style is used to specify a default value of the transaction attribute
for the methods for which there is no Style 2 or Style 3 element specified.
There must be at most one container transaction element that uses the Style 1
method element for a given enterprise bean.
Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
// hack try/catch block around test, to exit gracefully instead of
// crashing verifier on getMethodDescriptors() call, XML mods cause
// java.lang.ClassNotFoundException: verifier.ejb.hello.BogusEJB
// Replacing <ejb-class>verifier.ejb.hello.HelloEJB with
// <ejb-class>verifier.ejb.hello.BogusEJB...
try {
boolean oneFailed = false;
boolean na = false;
int foundWildCard = 0;
if (!descriptor.getMethodContainerTransactions().isEmpty()) {
for (Enumeration ee = descriptor.getMethodContainerTransactions().keys(); ee.hasMoreElements();) {
MethodDescriptor methodDescriptor = (MethodDescriptor) ee.nextElement();
if (methodDescriptor.getName().equals(MethodDescriptor.ALL_EJB_METHODS)) {
foundWildCard++;
}
}
// report for this particular set of Container tx's
// DOL only saves one container tx with "*", so can't fail...
if (foundWildCard == 1) {
result.addGoodDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.passed(smh.getLocalString
(getClass().getName() + ".passed",
"Container Transaction method name [ {0} ] defined only once in [ {1} ] bean.",
new Object[] {MethodDescriptor.ALL_EJB_METHODS, descriptor.getName()}));
} else if (foundWildCard > 1) {
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failed",
"Error: Container Transaction method name [ {0} ] is defined [ {1} ] times in [ {2} ] bean. Method name container transaction style [ {3} ] is allowed only once per bean.",
new Object[] {MethodDescriptor.ALL_EJB_METHODS, new Integer(foundWildCard), descriptor.getName(),MethodDescriptor.ALL_EJB_METHODS}));
} else {
result.addNaDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable1",
"Container Transaction method name [ {0} ] not defined in [ {1} ] bean.",
new Object[] {MethodDescriptor.ALL_EJB_METHODS, descriptor.getName()}));
}
} else { // if (methodDescriptorsIterator.hasNext())
result.addNaDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable",
"There are no method permissions within this bean [ {0} ]",
new Object[] {descriptor.getName()}));
}
return result;
} catch (Throwable t) {
result.addErrorDetails(smh.getLocalString
("tests.componentNameConstructor",
"For [ {0} ]",
new Object[] {compName.toString()}));
result.failed(smh.getLocalString
(getClass().getName() + ".failedException2",
"Error: [ {0} ] does not contain class [ {1} ] within bean [ {2} ]",
new Object[] {descriptor.getName(), t.getMessage(), descriptor.getName()}));
return result;
}