smartbi.sdk.service.operationLog
类 OperationLogService

java.lang.Object
  继承者 smartbi.sdk.service.operationLog.OperationLogService

public class OperationLogService
extends java.lang.Object

此类为Smartbi操作日志的服务接口,提供对日志操作需要的方法。


构造方法摘要
OperationLogService(ClientConnector conn)
          创建连接
 
方法摘要
 java.util.List<OperationLog> getAllLogByType(java.lang.String type)
          根据日志类型获取日志信息
 java.util.List<OperationLog> getByType(java.lang.String type, java.lang.String start, java.lang.String end)
          根据日志类型、起始时间、结束时间获取日志信息
 IOperationLogModule getOperationLogStub()
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

OperationLogService

public OperationLogService(ClientConnector conn)
创建连接

参数:
conn - 应用连接器
方法详细信息

getOperationLogStub

public IOperationLogModule getOperationLogStub()
返回:
IOperationLogModule

getAllLogByType

public java.util.List<OperationLog> getAllLogByType(java.lang.String type)
根据日志类型获取日志信息

参数:
type - 日志类型
返回:
日志信息列表

getByType

public java.util.List<OperationLog> getByType(java.lang.String type,
                                              java.lang.String start,
                                              java.lang.String end)
根据日志类型、起始时间、结束时间获取日志信息

参数:
type - 日志类型
start - 起始时间 格式如:2009-01-01 00:00
end - 结束时间 格式如:2009-01-01 00:00
返回:
日志信息列表