return retval;
}
private void prepareCacheLoader(GlobalTransaction gtx, boolean onePhase) throws Exception {
List modifications;
TransactionEntry entry;
int txPuts = 0;
entry=tx_table.get(gtx);
if(entry == null)
throw new Exception("entry for transaction " + gtx + " not found in transaction table");
modifications=entry.getCacheLoaderModifications();
if(modifications.size() == 0)
return;
List cache_loader_modifications=new ArrayList();
for(Iterator it=modifications.iterator(); it.hasNext();) {
JBCMethodCall methodCall=(JBCMethodCall) it.next();