comparison src/org/dancres/blitz/oid/OID.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
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.oid;
2
3 import java.io.Serializable;
4
5 import org.dancres.blitz.cache.Identifier;
6
7 /**
8 Opaque identifier for a particular entry within an EntryRepository instance.
9 This class understands how a zone id and oid map to an on-disk
10 representation. No other class needs this information it can use methods
11 provided here.
12 */
13 public interface OID extends Serializable, Identifier {
14 public int getZoneId();
15
16 public long getId();
17 }