added revision parameter to changeset client api

This commit is contained in:
Sebastian Sdorra
2011-11-15 21:44:29 +01:00
parent 90c232a17e
commit 0859191fef
3 changed files with 27 additions and 11 deletions

View File

@@ -55,12 +55,14 @@ public interface ClientChangesetHandler
* @return
*/
public ChangesetPagingResult getChangesets(int start, int limit);
/**
* @param path
* @param revision
* @param start
* @param limit
* @return
*/
public ChangesetPagingResult getChangesets(String path, int start, int limit);
public ChangesetPagingResult getChangesets(String path, String revision,
int start, int limit);
}