mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Checkpoint for AVMSyncService. Update (that's promote to use
preferred parlance or submit if you have a certain background) is substantially working, passing a handful of basic tests. Compare harmlessly returns no differences always, so Kev can program against it if he's so inclined. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3785 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -45,14 +45,16 @@ public interface AVMSyncService
|
||||
* will cause the transaction to roll back.
|
||||
* @param diffList A List of AVMDifference structs.
|
||||
* @param ignoreConflicts If this is true the update will skip those
|
||||
* AVMDifferences which are in conflict or for which the source is older than
|
||||
* AVMDifferences which are in conflict with
|
||||
* the destination.
|
||||
* @param ignoreOlder If this is true the update will skip those
|
||||
* AVMDifferences which have the source older than the destination.
|
||||
* @param overrideConflicts If this is true the update will override conflicting
|
||||
* AVMDifferences and replace the destination with the conflicting source.
|
||||
* @param overrideOlder If this is true the update will override AVMDifferences
|
||||
* in which the source is older than the destination and overwrite the destination.
|
||||
*/
|
||||
public void update(List<AVMDifference> diffList, boolean ignoreConflicts,
|
||||
public void update(List<AVMDifference> diffList, boolean ignoreConflicts, boolean ignoreOlder,
|
||||
boolean overrideConflicts, boolean overrideOlder);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user