logmgr.java

来自「该HttpProxy用于从Applet或Swing界面中访问Ejb和服务端的Ja」· Java 代码 · 共 31 行

JAVA
31
字号
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 + =
减小字号Ctrl + -
显示快捷键?