1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.struts.chain.commands.servlet;
17
18 import org.apache.struts.action.ActionForward;
19 import org.apache.struts.chain.commands.AbstractSelectForward;
20 import org.apache.struts.chain.contexts.ActionContext;
21 import org.apache.struts.config.ForwardConfig;
22 import org.apache.struts.config.ModuleConfig;
23
24 /***
25 * <p>Create and return a <code>ForwardConfig</code> representing the
26 * specified module-relative destination.</p>
27 *
28 * @version $Rev: 421119 $ $Date: 2005-05-07 12:11:38 -0400 (Sat, 07 May 2005)
29 * $
30 */
31 public class SelectForward extends AbstractSelectForward {
32
33
34 /***
35 * <p>Create and return a <code>ForwardConfig</code> representing the
36 * specified module-relative destination.</p>
37 *
38 * @param context The context for this request
39 * @param moduleConfig The <code>ModuleConfig</code> for this request
40 * @param uri The module-relative URI to be the destination
41 */
42 protected ForwardConfig forward(ActionContext context,
43 ModuleConfig moduleConfig, String uri) {
44 return (new ActionForward(null, uri, false, moduleConfig.getPrefix()));
45 }
46 }