1 /*
2 * $Id: IValidationListener.java,v 1.1 2007/06/06 16:39:52 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.event;
6
7 import javax.faces.event.AbortProcessingException;
8 import javax.faces.event.FacesListener;
9
10 /**
11 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12 * @version $Revision: 1.1 $ $Date: 2007/06/06 16:39:52 $
13 */
14 public interface IValidationListener extends FacesListener {
15
16 void processValidationEvent(ValidationEvent event)
17 throws AbortProcessingException;
18
19 }