added getAll method to data store api

This commit is contained in:
Sebastian Sdorra
2012-11-20 22:00:25 +01:00
parent ca3b6e3556
commit 8039674074
2 changed files with 73 additions and 5 deletions

View File

@@ -31,6 +31,10 @@
package sonia.scm.store;
//~--- JDK imports ------------------------------------------------------------
import java.util.Map;
/**
*
* @author Sebastian Sdorra
@@ -85,4 +89,12 @@ public interface DataStore<T>
* @return
*/
public T get(String id);
/**
* Method description
*
*
* @return
*/
public Map<String, T> getAll();
}