View Javadoc

1   /*
2    * Copyright 2003,2004 The Apache Software Foundation.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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      // ------------------------------------------------------- Protected Methods
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  }