allow to fetch repositories by type and name

This commit is contained in:
Sebastian Sdorra
2012-01-08 11:57:16 +01:00
parent 05fc269e7e
commit 15e7b38c7c
5 changed files with 84 additions and 0 deletions

View File

@@ -50,6 +50,18 @@ import java.util.Collection;
public interface RepositoryClientHandler extends ClientHandler<Repository>
{
/**
* Method description
*
*
* @param type
* @param name
*
* @return
* @since 1.11
*/
public Repository get(String type, String name);
/**
* Method description
*