| java.lang.Object com.rift.coad.lib.audit.AuditTrailEntry
AuditTrailEntry | public class AuditTrailEntry implements java.io.Serializable(Code) | | This object responsible for storing the information pertinant to a
single audit trail event.
author: brett chaldecott |
Method Summary | |
public Throwable | getCause() This method returns the cause of the audit trail error. | public String | getMethod() This method returns the string name method information. | public Date | getRecordTime() This method returns the record time. | public String | getTarget() This method returns the target object of the audit trail entry. | public String | getUser() This method returns the user name. |
AuditTrailEntry | public AuditTrailEntry(String user, String target, String method)(Code) | | Creates a new instance of AuditTrailEntry
Parameters: user - The user of the entry. Parameters: target - The target of the entry. Parameters: method - The begin called. |
AuditTrailEntry | public AuditTrailEntry(String user, String target, String method, Throwable cause)(Code) | | Creates a new instance of AuditTrailEntry
Parameters: user - The user of the entry. Parameters: target - The target of the entry. Parameters: method - The begin called. Parameters: cause - The cause of the error. |
getCause | public Throwable getCause()(Code) | | This method returns the cause of the audit trail error.
The cause of the audit trail entry. |
getMethod | public String getMethod()(Code) | | This method returns the string name method information.
The string containing the method information. |
getRecordTime | public Date getRecordTime()(Code) | | This method returns the record time.
The record time for the audit trail entry. |
getTarget | public String getTarget()(Code) | | This method returns the target object of the audit trail entry.
The string containing the target information. |
getUser | public String getUser()(Code) | | This method returns the user name.
|
|
|