callContext.setCurrentOperation(Operation.STORE);
final ThreadContext oldCallContext = ThreadContext.enter(callContext);
try {
bean.ejbStore();
} catch (final Exception re) {
logger.error("Exception occured during ejbStore()", re);
txPolicy.setRollbackOnly(re);
} finally {
ThreadContext.exit(oldCallContext);