01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library 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: OzoneRemote.java,v 1.2 2002/06/08 00:49:38 mediumnet Exp $
08:
09: package org.ozoneDB;
10:
11: import org.ozoneDB.core.*;
12:
13: /**
14: * This interface is implemented by database classes ({@link OzoneCompatible})
15: * and proxies ({@link OzoneProxy}). All Java interfaces which define the remote
16: * methods of a database object have to extend OzoneRemote. This allows the OPP
17: * to determine the methods to export.
18: *
19: *
20: * @author <a href="http://www.softwarebuero.de/">SMB</a>
21: * @version $Revision: 1.2 $Date: 2002/06/08 00:49:38 $
22: */
23: public interface OzoneRemote extends OzoneCompatibleOrProxy {
24: }
|