Package com.googlecode.memwords.web.preferences

Source Code of com.googlecode.memwords.web.preferences.PreferencesActionBean

package com.googlecode.memwords.web.preferences;

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

import com.googlecode.memwords.web.MwActionBean;

/**
* Action bean used to display the main preferences page
* @author JB
*/
public class PreferencesActionBean extends MwActionBean {

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

Related Classes of com.googlecode.memwords.web.preferences.PreferencesActionBean

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.