]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/test/tree/ResultAttributes.java
Introduce listResults service with filtering on collectionId and attributes
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / test / tree / ResultAttributes.java
index cd0213ca750d5e60785aa695f2443f71e12455b5..3a2c842e36930a8241e8c24bc16a41f3b0cf2734 100644 (file)
@@ -1,10 +1,12 @@
 package org.argeo.slc.core.test.tree;
 
+import java.util.Date;
 import java.util.Hashtable;
 import java.util.Map;
 
 public class ResultAttributes {
        private String uuid = null;
+       private Date closeDate = null;
        private Map<String, String> attributes = new Hashtable<String, String>();
 
        public ResultAttributes() {
@@ -15,6 +17,7 @@ public class ResultAttributes {
                super();
                this.uuid = ttr.getUuid();
                this.attributes = ttr.getAttributes();
+               this.closeDate = ttr.getCloseDate();
        }
 
        public String getUuid() {
@@ -33,4 +36,12 @@ public class ResultAttributes {
                this.attributes = attributes;
        }
 
+       public Date getCloseDate() {
+               return closeDate;
+       }
+
+       public void setCloseDate(Date closeDate) {
+               this.closeDate = closeDate;
+       }
+
 }