1 package net.sourceforge.cruisecontrol; 2 3 /** 4 * . 5 * User: jfredrick 6 * Date: Sep 6, 2004 7 * Time: 10:47:31 PM 8 */ 9 public interface Listener { 10 11 public void handleEvent(ProjectEvent event) throws CruiseControlException; 12 13 /** 14 * Called after the configuration is read to make sure that all the mandatory parameters 15 * were specified.. 16 * 17 * @throws CruiseControlException if there was a configuration error. 18 */ 19 public void validate() throws CruiseControlException; 20 } 21