diff src/org/dancres/blitz/notify/SpaceNotifyUID.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/notify/SpaceNotifyUID.java	Sat Mar 21 11:00:06 2009 +0000
@@ -0,0 +1,41 @@
+package org.dancres.blitz.notify;
+
+import org.dancres.blitz.oid.OID;
+
+import org.dancres.blitz.lease.SpaceUID;
+
+/**
+   Opaque space-level unique identifier for an Notify. <P>
+
+   This will be the cookie we place inside a lease.  We should make this
+   cookie responsible for doing a renew.  i.e. put the renew code in here. <P>
+ */
+final class SpaceNotifyUID implements SpaceUID {
+    private OID theOID;
+
+    SpaceNotifyUID(OID aOID) {
+        theOID = aOID;
+    }
+
+    public boolean equals(Object anObject) {
+        if (anObject instanceof SpaceNotifyUID) {
+            SpaceNotifyUID myUID = (SpaceNotifyUID) anObject;
+
+            return (theOID.equals(myUID.theOID));
+        }
+
+        return false;
+    }
+
+    OID getOID() {
+        return theOID;
+    }
+
+    public int hashCode() {
+        return theOID.hashCode();
+    }
+
+    public String toString() {
+        return "N" + theOID;
+    }
+}