Package act.impl

Source Code of act.impl.MainFlight

package act.impl;

import frwa.ActionResult;
import frwa.IAction;

import javax.servlet.http.HttpServletRequest;

public class MainFlight implements IAction {

    public String getName() {
        return "MainFlight";
    }

    public ActionResult perform(HttpServletRequest request) {
        ActionResult actionResult = new ActionResult();
        actionResult.setUrlAddress("flt/MainFlight.jsp");
        actionResult.setFormObject(new FlightFormObject());
        return actionResult;
    }
}
TOP

Related Classes of act.impl.MainFlight

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.