public final class AuditEvent extends EventObject
I'm not very satisfied about the design of this event since there are optional methods that will return null in most of the case. This will need some work to clean it up especially if we want to introduce a more sequential reporting action rather than a packet error reporting. This will allow for example to follow the process quickly in an interface or a servlet (yep, that's cool to run a check via a web interface in a source repository ;-)
AuditListener
,
Serialized Formsource
Constructor and Description |
---|
AuditEvent(Object source)
Creates a new instance.
|
AuditEvent(Object src,
String fileName)
Creates a new
AuditEvent instance. |
AuditEvent(Object src,
String fileName,
LocalizedMessage localizedMessage)
Creates a new
AuditEvent instance. |
Modifier and Type | Method and Description |
---|---|
int |
getColumn()
Gets the column associated with the message.
|
String |
getFileName()
Returns name of file being audited.
|
int |
getLine()
Return the line number on the source file where the event occurred.
|
LocalizedMessage |
getLocalizedMessage()
Gets the localized message.
|
String |
getMessage()
Return the message associated to the event.
|
String |
getModuleId()
Returns id of module.
|
SeverityLevel |
getSeverityLevel()
Gets the audit event severity level.
|
String |
getSourceName()
Gets the name of the source for the message.
|
getSource, toString
public AuditEvent(Object source)
source
- the object that created the eventpublic AuditEvent(Object src, String fileName)
AuditEvent
instance.src
- source of the eventfileName
- file associated with the eventpublic AuditEvent(Object src, String fileName, LocalizedMessage localizedMessage)
AuditEvent
instance.src
- source of the eventfileName
- file associated with the eventlocalizedMessage
- the actual messagepublic String getFileName()
public int getLine()
public String getMessage()
public int getColumn()
public SeverityLevel getSeverityLevel()
public String getModuleId()
public String getSourceName()
public LocalizedMessage getLocalizedMessage()
Copyright © 2001–2018. All rights reserved.