Package com.tailf.notif
Class AuditNotification
Object
com.tailf.notif.Notification
com.tailf.notif.AuditNotification
Data structure for Audit events
- 
Constructor Summary
ConstructorsConstructorDescriptionAuditNotification(int logno, String user, int usid, String msg) Constructs a new AuditNotification with the specified parameters. - 
Method Summary
Modifier and TypeMethodDescriptionintgetLogNo()Gets the log number from confd_logsyms.h associated with this audit event.Gets the audit message describing the event that occurred.getUser()Gets the username associated with this audit event.intGets the user session identifier associated with this audit event.toString()Returns a string representation of this AuditNotification.Methods inherited from class com.tailf.notif.Notification
getNotificationType 
- 
Constructor Details
- 
AuditNotification
Constructs a new AuditNotification with the specified parameters.- Parameters:
 logno- the log number from confd_logsyms.huser- the username associated with the audit eventusid- the user session identifiermsg- the audit message describing the event
 
 - 
 - 
Method Details
- 
toString
Returns a string representation of this AuditNotification.- Overrides:
 toStringin classNotification- Returns:
 - a string representation of this audit notification
 
 - 
getLogNo
public int getLogNo()Gets the log number from confd_logsyms.h associated with this audit event.- Returns:
 - the log number identifying the type of audit event
 
 - 
getUser
Gets the username associated with this audit event.- Returns:
 - the username
 
 - 
getUserId
public int getUserId()Gets the user session identifier associated with this audit event.- Returns:
 - the user session ID
 
 - 
getMessage
Gets the audit message describing the event that occurred.- Returns:
 - the descriptive message for this audit event
 
 
 -