diff src/org/dancres/blitz/remote/view/EntryViewUID.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/dancres/blitz/remote/view/EntryViewUID.java	Sat Mar 21 11:00:06 2009 +0000
@@ -0,0 +1,31 @@
+package org.dancres.blitz.remote.view;
+
+import net.jini.id.Uuid;
+
+import org.dancres.blitz.lease.SpaceUID;
+
+public class EntryViewUID implements SpaceUID {
+    private Uuid theViewId;
+
+    EntryViewUID(Uuid aUuid) {
+        theViewId = aUuid;
+    }
+
+    public boolean equals(Object anObject) {
+        if (anObject instanceof EntryViewUID) {
+            EntryViewUID myOther = (EntryViewUID) anObject;
+
+            return (myOther.theViewId.equals(theViewId));
+        }
+
+        return false;
+    }
+
+    public int hashCode() {
+        return theViewId.hashCode();
+    }
+
+    Uuid getViewId() {
+        return theViewId;
+    }
+}
\ No newline at end of file