⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 authmanager.java

📁 《JSP网站开发典型模块与实例精讲》一书光盘源码
💻 JAVA
字号:
package org.appfuse.service;

import java.util.List;

import org.appfuse.service.impl.BaseManager;
import org.appfuse.dao.*;
import org.appfuse.model.*;
import org.appfuse.util.exception.*;

public interface AuthManager
{

    /**
     * Set the DAO for communication with the data layer.
     *
     * @param dao
     */
    public void setAuthDAO(AuthDAO dao);

    /**
     * @see org.appfuse.service.UserManager#saveUser(org.appfuse.model.User)
     */
    public void saveAuth(Auth roleAuth)throws AppSystemException,AppBusinessException;

    /**
     * @see org.appfuse.service.UserManager#removeUser(java.lang.String)
     */
    public void removeAuth(Auth roleAuth)throws AppSystemException,AppBusinessException;

    public Auth getAuth(int authid)throws AppSystemException,AppBusinessException;
    public Auth getAuth(int moduleid, int functionid)throws AppSystemException,AppBusinessException;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -