| | |
| | | * |
| | | * @param modifyOperation the operation to be processed |
| | | * @param modifiedEntry the entry that is being modified (before modification) |
| | | * @return true if the replayed operation was in conflict |
| | | */ |
| | | public void replayOperation(ModifyOperation modifyOperation, |
| | | public boolean replayOperation(ModifyOperation modifyOperation, |
| | | Entry modifiedEntry) |
| | | { |
| | | boolean bConflict = false; |
| | | List<Modification> mods = modifyOperation.getModifications(); |
| | | ChangeNumber changeNumber = |
| | | OperationContext.getChangeNumber(modifyOperation); |
| | |
| | | // TODO : FILL ME |
| | | break; |
| | | } |
| | | bConflict = true; |
| | | } |
| | | else |
| | | { |
| | |
| | | { |
| | | moreRecentChangenumber = changeNumber; |
| | | } |
| | | return bConflict; |
| | | } |
| | | |
| | | /** |