1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.faces.core.event;6 7 8 /**9 * Jun 3, 2004 10 * @author: Tuan Nguyen11 * @email: tuan08@users.sourceforge.net12 * @version: $ID$13 **/14 public class ActionInterceptor {15 public void preExecute(ExoActionEvent event) throws Exception {16 17 }18 19 public void postExecute(ExoActionEvent event) throws Exception {20 21 }22 }23