logmgrproxy.java

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

JAVA
34
字号
package com.nari.pmos.ejb.interfaces;

import java.util.Collection;
import java.util.Date;

public interface LogmgrProxy {

	public boolean recorde(String log_Type, String user_Account,
			String message, String log_Flag);

	public boolean recorde(String log_Type, String user_Account, String ejb,
			String method, String message, String log_Flag);

	public Collection find_LogInfo_By_User_Account(String user_Account);

	public Collection find_LogInfo_By_Log_Type(String log_Type);

	public Collection find_LogInfo_By_Log_Flag(String log_Flag);

	public Collection find_LogInfo_By_Log_Date_Befor(Date log_Date_Befor);

	public Collection find_LogInfo_By_Log_Date_After(Date log_Date_After);

	public Collection find_LogInfo_By_Log_Date_Between(Date log_Date_After,
			Date log_Date_Befor);

	public Collection find_Account_AND_LogInfo_By_Log_Date_Between(
			String account, Date log_Date_After, Date log_Date_Befor);
	
	public Collection find_Sys_Log(String user_account, String log_type,
			Date date_befer, Date date_after);

}

⌨️ 快捷键说明

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