Package com.googlecode.memwords.web

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

package com.googlecode.memwords.web;

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

/**
* Action bean used to display screenshots
* @author JB
*/
public class ScreenshotsActionBean extends MwActionBean {

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

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

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.