1 package org.weda.action;
2
3 /**
4 *
5 * @author Mikhail Titov
6 */
7 public interface ActionListener {
8 public ActionListenerFilter getFilter();
9 public void setFilter(ActionListenerFilter filter);
10 public void beforeExecute(ActionEvent event) throws Exception;
11 public void afterExecute(ActionEvent event) throws Exception;
12 //public void afterLinkedActionsExecute(ActionEvent event) throws Exception;
13 }