public class SignedAuditEvent extends java.lang.Object implements IBundleLogEvent
MessageFormat,
LogResources,
Serialized Form| Modifier and Type | Field and Description |
|---|---|
protected java.lang.Object[] |
mParams |
| Constructor and Description |
|---|
SignedAuditEvent(java.lang.Exception e)
Constructs a message from a base exception.
|
SignedAuditEvent(java.lang.String msgFormat)
Constructs a SignedAuditEvent message event.
|
SignedAuditEvent(java.lang.String msgFormat,
java.lang.Exception exception)
Constructs a message from an exception.
|
SignedAuditEvent(java.lang.String msgFormat,
java.lang.Object[] params)
Constructs a message event with a list of parameters
that will be substituted into the message format.
|
SignedAuditEvent(java.lang.String msgFormat,
java.lang.String param)
Constructs a message with a parameter.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.lang.String |
getBundleName()
Retrieves bundle name.
|
java.lang.String |
getEventType()
Retrieves log event type.
|
int |
getLevel()
Retrieves log level.
|
java.lang.String |
getMessage()
Returns the current message format string.
|
boolean |
getMultiline()
Retrieves log multiline attribute.
|
int |
getNTEventType()
Retrieves NT specific log event type.
|
java.lang.Object[] |
getParameters()
Returns a list of parameters.
|
int |
getSource()
Retrieves log source.
|
long |
getTimeStamp()
Retrieves event time stamp.
|
void |
setBundleName(java.lang.String bundle)
Sets the resource bundle name for this class instance.
|
void |
setEventType(java.lang.String eventType)
Sets log event type.
|
void |
setLevel(int level)
Sets log level, NT log event type.
|
void |
setMultiline(boolean multiline)
Sets log multiline attribute.
|
void |
setSource(int source)
Sets log source.
|
java.lang.String |
toContent()
Returns localized message string.
|
java.lang.String |
toContent(java.util.Locale locale)
Returns the string based on the given locale.
|
java.lang.String |
toString()
Return string representation of log message.
|
public SignedAuditEvent(java.lang.String msgFormat)
msgFormat - The message string.public SignedAuditEvent(java.lang.String msgFormat,
java.lang.String param)
new SignedAuditEvent("failed to load {0}", fileName);
msgFormat - Details in message string format.param - Message string parameter.public SignedAuditEvent(java.lang.String msgFormat,
java.lang.Exception exception)
try {
...
} catch (IOExeption e) {
logHandler.log(new SignedAuditEvent("Encountered Signed Audit Error {0}", e);
}
msgFormat - Exception details in message string format.exception - System exception.public SignedAuditEvent(java.lang.Exception e)
try {
...
} catch (Exception e) {
logHandler.log(new SignedAuditEvent(e));
}
e - CMS exception.public SignedAuditEvent(java.lang.String msgFormat,
java.lang.Object[] params)
msgFormat - Message string format.params - List of message format parameters.public java.lang.String getMessage()
public java.lang.Object[] getParameters()
public java.lang.String toContent()
public java.lang.String toContent(java.util.Locale locale)
public void setBundleName(java.lang.String bundle)
setBundleName in interface IBundleLogEventbundle - String with name of resource bundle.protected java.lang.String getBundleName()
public int getSource()
public void setSource(int source)
source - Integer id of log source.public int getLevel()
public int getNTEventType()
getNTEventType in interface ILogEventpublic void setLevel(int level)
level - Integer log level value.public boolean getMultiline()
getMultiline in interface ILogEventpublic void setMultiline(boolean multiline)
multiline - Boolean multiline value.public long getTimeStamp()
getTimeStamp in interface ILogEventpublic java.lang.String getEventType()
getEventType in interface ILogEventpublic void setEventType(java.lang.String eventType)
setEventType in interface ILogEventeventType - String containing the type of event.public java.lang.String toString()
toString in class java.lang.Object