View Javadoc

1   /*
2    * $Id: IUserEventListener.java,v 1.18 2011/06/16 09:29:40 jbmeslin 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   * 
12   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
13   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
14   */
15  public interface IUserEventListener extends FacesListener {
16  
17      void processUserEvent(UserEvent event) throws AbortProcessingException;
18  }