📄 logmgr.java
字号:
package com.nari.pmos.ejb.log;
import java.rmi.RemoteException;
import java.util.Collection;
import java.util.Date;
import javax.ejb.EJBObject;
public interface Logmgr extends EJBObject {
public boolean recorde(String log_Type, String user_Account,
String message, String log_Flag) throws RemoteException;
public boolean recorde(String log_Type, String user_Account, String ejb,
String method, String message, String log_Flag) throws RemoteException;
public Collection find_LogInfo_By_User_Account(String user_Account) throws RemoteException;
public Collection find_LogInfo_By_Log_Type(String log_Type) throws RemoteException;
public Collection find_LogInfo_By_Log_Flag(String log_Flag) throws RemoteException;
public Collection find_LogInfo_By_Log_Date_Befor(Date log_Date_Befor) throws RemoteException;
public Collection find_LogInfo_By_Log_Date_After(Date log_Date_After) throws RemoteException;
public Collection find_LogInfo_By_Log_Date_Between(Date log_Date_After,
Date log_Date_Befor) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -