package wenrgise.ejb.common.facade; import java.rmi.RemoteException; import java.util.ArrayList; import java.util.HashMap; import javax.ejb.EJBObject; import wenrgise.common.bean.EmpInfoBean; import wenrgise.common.exception.EnrgiseApplicationException; import wenrgise.common.exception.EnrgiseSystemException; public interface SecurityFacade extends EJBObject { HashMap getDisabledFields(String paramString1, String paramString2, String paramString3, String paramString4) throws RemoteException, EnrgiseSystemException, EnrgiseApplicationException; ArrayList addMenuList(EmpInfoBean paramEmpInfoBean) throws RemoteException, EnrgiseSystemException, EnrgiseApplicationException; HashMap getAccessInfo(EmpInfoBean paramEmpInfoBean) throws RemoteException, EnrgiseSystemException, EnrgiseApplicationException; }