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.AbstractSelectInput;
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>Validate the properties of the form bean for this request. If there are
26 * any validation errors, execute the child commands in our chain; otherwise,
27 * proceed normally.</p>
28 *
29 * @version $Rev: 421119 $ $Date: 2005-05-07 12:11:38 -0400 (Sat, 07 May 2005)
30 * $
31 */
32 public class SelectInput extends AbstractSelectInput {
33
34
35 /***
36 * <p>Create and return a <code>ForwardConfig</code> representing the
37 * specified module-relative destination.</p>
38 *
39 * @param context The context for this request
40 * @param moduleConfig The <code>ModuleConfig</code> for this request
41 * @param uri The module-relative URI to be the destination
42 */
43 protected ForwardConfig forward(ActionContext context,
44 ModuleConfig moduleConfig, String uri) {
45 return (new ActionForward(null, uri, false, moduleConfig.getPrefix()));
46 }
47 }