diff flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java @ 3:9cf5a40b62c7

Added an interface and a default implementation of a Collection. flys-client/trunk@1311 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 10 Feb 2011 14:45:14 +0000
parents
children 14bf7895a2ec
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultCollection.java	Thu Feb 10 14:45:14 2011 +0000
@@ -0,0 +1,36 @@
+package de.intevation.flys.client.shared.model;
+
+import java.util.Date;
+
+
+/**
+ * The default implementation of a {@link Collection}.
+ *
+ * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
+ */
+public class DefaultCollection implements Collection {
+
+    /** The uuid of the collection. */
+    protected String uuid;
+
+
+    /**
+     * Creates a new DefaultCollection with a UUID.
+     *
+     * @param uuid The UUID.
+     */
+    public DefaultCollection(String uuid) {
+        this.uuid = uuid;
+    }
+
+
+    public Date getLastAccess() {
+        return new Date();
+    }
+
+
+    public String getName() {
+        return uuid;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org