]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.core/src/main/java/org/argeo/slc/dao/test/tree/TreeTestResultCollectionDao.java
Fix the format of tree test result attributes.
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / dao / test / tree / TreeTestResultCollectionDao.java
index 7d2f0ab081922d3965efcb02f3d9572179764ca5..730c9d9882d616d77e69c2649b24d3408205104e 100644 (file)
@@ -1,9 +1,22 @@
 package org.argeo.slc.dao.test.tree;\r
 \r
+import java.util.SortedSet;\r
+\r
 import org.argeo.slc.core.test.tree.TreeTestResultCollection;\r
 \r
 public interface TreeTestResultCollectionDao {\r
        public void create(TreeTestResultCollection ttrCollection);\r
+\r
        public void update(TreeTestResultCollection ttrCollection);\r
+\r
        public TreeTestResultCollection getTestResultCollection(String id);\r
+\r
+       public SortedSet<TreeTestResultCollection> listCollections();\r
+\r
+       public void addResultToCollection(TreeTestResultCollection ttrc,\r
+                       String resultUuid);\r
+\r
+       public void removeResultFromCollection(TreeTestResultCollection ttrc,\r
+                       String resultUuid);\r
+\r
 }\r