01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.interceptor;
06:
07: import com.opensymphony.xwork.Action;
08:
09: /**
10: * Used by ExecuteAndWaitInterceptorTest.
11: *
12: * @author Claus Ibsen
13: */
14: public class ExecuteAndWaitDelayAction implements Action {
15:
16: public String execute() throws Exception {
17: Thread.sleep(500);
18: return SUCCESS;
19: }
20:
21: }
|