view src/org/dancres/blitz/remote/view/EntryViewUID.java @ 32:243c74d599bf

Update ignores
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 12 Jun 2010 10:41:47 +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;
    }
}