view src/org/dancres/blitz/notify/SpaceNotifyUID.java @ 27:511648fa4d64 Version 2.1

Version to 2.1
author Dan Creswell <dan.creswell@gmail.com>
date Mon, 04 Jan 2010 13:00:40 +0000
parents 3dc0c5604566
children
line wrap: on
line source

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;
    }
}