added getContent api

This commit is contained in:
Sebastian Sdorra
2011-06-13 15:46:28 +02:00
parent b98225955b
commit 56c4e1b0b9
3 changed files with 138 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ package sonia.scm.repository;
//~--- JDK imports ------------------------------------------------------------
import java.io.IOException;
import java.io.InputStream;
/**
*
@@ -45,6 +46,21 @@ import java.io.IOException;
public interface RepositoryBrowser
{
/**
* Method description
*
*
* @param revision
* @param path
*
* @return
*
* @throws IOException
* @throws RepositoryException
*/
public InputStream getContent(String revision, String path)
throws IOException, RepositoryException;;
/**
* Method description
*