To log client eventsstartLogClientEvent
public void startLogClientEvent(EDCContext context, AuditRecordBO[] entries) throws SDKException {...}
logClientEvent: Every-time a client event is generated, this
API is called. This event takes in EDCContext and AuditRecordBO.
public void logClientEvent(EDCContext context, AuditRecordBO[] entries) throws SDKException {...}
Note: AuditRecordBO
is an array containing the data of the clients by whom the events
got generated. For example, entries[i]. getClientIPAddress();
endLogClientEventpublic
void endLogClientEvent(EDCContext
context, AuditRecordBO[] entries) throws SDKException {System.out.println("endLogClientEvent");}
To log server eventsTo log server
StartLogServerEvent
public void startLogServerEvent(EDCContext context, AuditRecordBO entry) throws SDKException {...}
logServerEvent: Called for logging server events and takes
in EDCContext and AuditRecordBO.
public void logServerEvent(EDCContext context, AuditRecordBO entry) throws SDKException {...}
endLogServerEvent
public void endLogServerEvent(EDCContext
context, AuditRecordBO entry) throws SDKException {...}
|
|
|