Package com.googlecode.memwords.web

Source Code of com.googlecode.memwords.web.IndexActionBean

package com.googlecode.memwords.web;

import net.sourceforge.stripes.action.DefaultHandler;
import net.sourceforge.stripes.action.ForwardResolution;
import net.sourceforge.stripes.action.Resolution;

/**
* Index action, which displays the welcome page.
* @author JB
*/
public class IndexActionBean extends MwActionBean {

    /**
     * Displays the welcome page
     * @return a forward resolution to the welcome page
     */
    @DefaultHandler
    public Resolution view() {
        return new ForwardResolution("/welcome.jsp");
    }
}
TOP

Related Classes of com.googlecode.memwords.web.IndexActionBean

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.