1 package com.teamkonzept.lib;2 3 /**4 * The Configuration Listener interface defines a callback method to allow5 * implementing classes to be notified about changes in their configuration6 * (Observer / Listener pattern). This may be useful for run-time7 * configuration of arbitrary components.8 *9 * @version 1.010 * @since 1.011 * @author © 2001 Team-Konzept12 */13 public interface ConfigurationListener14 {15 16 // $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/lib/ConfigurationListener.java,v 1.2 2001/02/14 12:50:25 uli Exp $17 18 // Method signatures.19 20 /**21 * Informs the listener about changes in its configuration.22 *23 * @exception com.teamkonzept.lib.TKException allows the listener24 * to signal an error.25 */26 public abstract void configurationChanged ()27 throws TKException;28 29 }30