01: package org.compass.needle.coherence;
02:
03: /**
04: * @author kimchy
05: */
06: public interface FileKey {
07:
08: public static final byte FILE_HEADER = 0;
09:
10: public static final byte FILE_BUCKET = 1;
11:
12: public static final byte FILE_LOCK = 2;
13:
14: String getIndexName();
15:
16: String getFileName();
17:
18: byte getType();
19: }
|