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: Lockable.java,v 1.2 2002/06/08 00:49:39 mediumnet Exp $
08:
09: package org.ozoneDB.core.dr;
10:
11: import org.ozoneDB.DxLib.*;
12:
13: /**
14: * @author <a href="http://www.softwarebuero.de/">SMB</a>
15: * @version $Revision: 1.2 $Date: 2002/06/08 00:49:39 $
16: */
17: public interface Lockable {
18:
19: /**
20: * Returns a collection of Locker objects that currently lock this Lockable
21: * object.
22: */
23: public DxCollection allLockers();
24:
25: /**
26: Unpins this Lockable.
27: */
28: public void unpin();
29: }
|