public PrepareCommand buildPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhaseCommit) {
return new PrepareCommand(cacheName, gtx, modifications, onePhaseCommit);
}
public VersionedPrepareCommand buildVersionedPrepareCommand(GlobalTransaction gtx, List<WriteCommand> modifications) {
return new VersionedPrepareCommand(cacheName, gtx, modifications);
}