Point checkin.

Separated ephemeral results you get from comparing a workflow
sandbox to staging from the delta you'd get between 2 versions
of staging itself.  The deltas work but the merges are not
there yet so you still need to do monolithic updates 
of staging using the old api for now.  Still, this lets you
see what the deltas look like -- basically just a slightly
different way of getting manifests of files with broken links.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6012 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jon Cox
2007-06-19 04:53:34 +00:00
parent 2de8f8402c
commit a6e250cdac
2 changed files with 49 additions and 45 deletions

View File

@@ -187,16 +187,10 @@ public interface LinkValidationService
HrefValidationProgress progress
) throws AVMNotFoundException;
public HrefManifest getHrefManifestBrokenByDelete(HrefDifference hdiff);
public HrefManifest getHrefManifestBrokenByNewOrMod(HrefDifference hdiff);
public HrefDifference getHrefDifference( int srcVersion,
String srcWebappPath,
int dstVersion,
String dstWebappPath,
int connectTimeout,
int readTimeout,
int nthreads,
HrefValidationProgress progress)
throws AVMNotFoundException;
public List<String> getHrefListFixedByDeleteOrMod(HrefDifference hdiff);
public List<String> getHrefListFixedByNew(HrefDifference hdiff);
}