1 2 // Copyright (C) 1998-19993 // Object Oriented Concepts, Inc.4 5 // **********************************************************************6 //7 // Copyright (c) 19978 // Mark Spruiell (mark@intellisoft.com)9 //10 // See the COPYING file for more information11 //12 // **********************************************************************13 14 package org.jacorb.trading.db;15 16 17 /**18 * An abstract interface to the trader databases19 */20 public interface DatabaseMgr21 {22 public OfferDatabase getOfferDatabase();23 24 public TypeDatabase getTypeDatabase();25 26 public void shutdown();27 }28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44