/*
 * $Header: /home/cvs/struts/xdocs/struts1.2/documentation/en/src/share/org/apache/struts/action/RedirectingActionForward.java,v 1.1 2004/10/20 03:18:44 ashizawa Exp $
 * $Revision: 1.1 $
 * $Date: 2004/10/20 03:18:44 $
 *
 * Copyright 2000-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


package org.apache.struts.action;


/**
 * <p>A subclass of <strong>ActionForward</strong> that defaults the
 * <code>redirect</code> attribute to <code>true</code>.</p>
 *
 * @version $Revision: 1.1 $ $Date: 2004/10/20 03:18:44 $
 */

public class RedirectingActionForward extends ActionForward {


    // ----------------------------------------------------------- Constructors


    /**
     * <p>Construct a new instance with default values.</p>
     */
    public RedirectingActionForward() {

       this(null);

    }


    /**
     * <p>Construct a new instance with the specified path.</p>
     *
     * @param path Path for this instance
     */
    public RedirectingActionForward(String path) {

        super();
        setName(null);
        setPath(path);
        setRedirect(true);

    }


}
