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.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      // ------------------------------------------------------- Protected Methods
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  }