1 /*
2 * AbstractAction.java
3 * Created on 19 Март 2006 г., 1:21
4 */
5
6 package org.weda.action.impl;
7
8 import org.weda.action.Action;
9
10 /**
11 *
12 * @author Mikhail Titov
13 */
14 public abstract class AbstractAction implements Action {
15
16 public Object afterLinkedActionExecute(
17 Object targetObject, Object linkedTargetObject
18 , boolean cancelAction)
19 throws Exception
20 {
21 return null;
22 }
23
24 }