Package act.impl

Source Code of act.impl.MainCountry

package act.impl;

import frwa.ActionResult;
import frwa.IAction;

import javax.servlet.http.HttpServletRequest;

public class MainCountry implements IAction {
    @Override
    public String getName() {
        return "MainCountry";
    }

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

Related Classes of act.impl.MainCountry

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.