Package com.googlecode.memwords.web.account

Source Code of com.googlecode.memwords.web.account.AccountActionBean

package com.googlecode.memwords.web.account;

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 account actions
* @author JB
*/
public class AccountActionBean extends MwActionBean {

    /**
     * Displays the account page, containing links to the operations on the user's account
     * (change master password, destroy account)
     * @return a forward resolution to the account page
     */
    @DefaultHandler
    public Resolution view() {
        return new ForwardResolution("/account/account.jsp");
    }
}
TOP

Related Classes of com.googlecode.memwords.web.account.AccountActionBean

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.