first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package WEB-INF.classes.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;
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package WEB-INF.classes.wenrgise.ejb.common.facade;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import javax.ejb.CreateException;
|
||||
import javax.ejb.EJBHome;
|
||||
import wenrgise.ejb.common.facade.SecurityFacade;
|
||||
|
||||
public interface SecurityFacadeHome extends EJBHome {
|
||||
SecurityFacade create() throws CreateException, RemoteException;
|
||||
}
|
Reference in New Issue
Block a user