1   /*
2    * TestLinkedAction.java
3    * Created on 19 Март 2006 г., 2:35
4    */
5   
6   package org.weda.action;
7   
8   import org.weda.action.impl.AbstractAction;
9   import org.weda.action.impl.ActionStateImpl;
10  
11  /**
12   *
13   * @author Mikhail Titov
14   */
15  public class TestLinkedAction extends AbstractAction{
16      public ActionState getActionState(ActionContainer targetObject) 
17          throws Exception 
18      {
19          return new ActionStateImpl(true, true);
20      }
21  
22      public Object execute(ActionContainer targetObject) throws Exception {
23          return null;
24      }
25      
26  }