Package wbbs.web.admin

Source Code of wbbs.web.admin.BaseAction

package wbbs.web.admin;

import cn.webwheel.LogicException;
import cn.webwheel.results.RedirectResult;

import java.sql.SQLException;

public class BaseAction extends wbbs.web.BaseAction {

    public void ensureLoginAction() throws SQLException {
        super.ensureLoginAction();
        if (!loginUser.id.equals("admin")) {
            throw new LogicException(err("请登录"));
        }
    }

    public void ensureLoginPage() throws SQLException {
        super.ensureLoginPage();
        if (!loginUser.id.equals("admin")) {
            throw new LogicException(new RedirectResult("/login.html"));
        }
    }
}
TOP

Related Classes of wbbs.web.admin.BaseAction

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.