KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > builders > vwms > VwmCallBackInterface


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.module.builders.vwms;
11
12 /**
13  * Virtual Web Master Client interface.
14  * This interface is emnt for classes that want to get notified when things change in a vwm.
15  * The only method in this interface is a notification method used when a vwm 'unloads'.
16  *
17  * @application VWMs
18  * @author vpro
19  * @author Pierre van Rooden (javadocs)
20  * @version $Id: VwmCallBackInterface.java,v 1.6 2004/10/08 10:57:57 pierre Exp $
21  */

22
23 public interface VwmCallBackInterface {
24
25     /**
26     * Callback routine, called when a vwm is unloaded (?).
27     * @return <code>true</code> if successfully handled
28     */

29     public boolean vwmUnload();
30 }
31
Popular Tags