diff options
Diffstat (limited to 'bdb/java/src/com/sleepycat/db/DbClient.java')
-rw-r--r-- | bdb/java/src/com/sleepycat/db/DbClient.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bdb/java/src/com/sleepycat/db/DbClient.java b/bdb/java/src/com/sleepycat/db/DbClient.java new file mode 100644 index 00000000000..3b9b349c841 --- /dev/null +++ b/bdb/java/src/com/sleepycat/db/DbClient.java @@ -0,0 +1,21 @@ +/*- + * See the file LICENSE for redistribution information. + * + * Copyright (c) 2000-2002 + * Sleepycat Software. All rights reserved. + * + * $Id: DbClient.java,v 11.4 2002/01/11 15:52:33 bostic Exp $ + */ + +package com.sleepycat.db; + +/* + * This interface is used by DbEnv.set_rpc_server(). + * It is a placeholder for a future capability. + * + */ +public interface DbClient +{ +} + +// end of DbClient.java |