1 /*-2 * See the file LICENSE for redistribution information.3 *4 * Copyright (c) 2000,2006 Oracle. All rights reserved.5 *6 * $Id: EnvConfigObserver.java,v 1.5 2006/10/30 21:14:15 bostic Exp $7 */8 9 package com.sleepycat.je.dbi;10 11 import com.sleepycat.je.DatabaseException;12 13 /**14 * Implemented by observers of mutable config changes.15 */16 public interface EnvConfigObserver {17 18 /**19 * Notifies the observer that one or more mutable properties have been20 * changed.21 */22 void envConfigUpdate(DbConfigManager configMgr)23 throws DatabaseException;24 }25