view src/org/dancres/blitz/remote/view/EntryViewUID.java @ 4:d3ec5ebc3dba

Fix up a small race-condition and and a todo for thread-safety in MatchSetImpl.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 25 Apr 2009 08:38:27 +0100
parents 3dc0c5604566
children
line wrap: on
line source

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