@PathParam("workspaceName") String workspaceName, @PathParam("userName") String userName,
@PathParam("password") String password, @PathParam("srcRepoPath") String srcRepoPath,
@PathParam("srcFileName") String srcFileName, @PathParam("destRepoPath") String destRepoPath,
@PathParam("destFileName") String destFileName, @PathParam("iterations") Long iterations)
{
ConcurrentModificationTestCase concurrentModificationTestCase =
new ConcurrentModificationTestCase(repositoryService, repositoryName, workspaceName, userName, password);
StringBuffer sb =
concurrentModificationTestCase.startThreadUpdater(srcRepoPath, srcFileName, destRepoPath, destFileName,
iterations);
return Response.ok(sb.toString()).build();
}