01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Core License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: ClusterID.java,v 1.1 2001/12/18 10:31:30 per_nyfelt Exp $
08:
09: package org.ozoneDB.core.classicStore;
10:
11: import org.ozoneDB.core.*;
12: import org.ozoneDB.util.*;
13:
14: /**
15: * ClusterID für die cluster
16: */
17: public final class ClusterID extends ObjectID {
18:
19: public ClusterID() {
20: super ();
21: }
22:
23: public ClusterID(long v) {
24: super(v);
25: }
26: }
|