AuditMessage Type

Models the permanent record of a given action in the application. Audit messages are returned by the AuditService , which logs messages for events tracked by the application audit feature. A message contains information about a tracked event, including its description, the user involved, where the action occurred, and so on.

Type Template

<...>
    <ID>xs:long</ID>
    <objectType>xs:int</objectType>
    <description>xs:string</description>
    <details>xs:string</details>
    <node>xs:string</node>
    <timestamp>xs:dateTime</timestamp>
    <user>
        <!-- Contents of User -->
    <user>
<...>

Note: Element descriptions are split into information that's relevant when you're creating an instance of this type and information relevant when you're receiving an instance of it. Occasionally these will differ.

Elements

Element Description
description
Setting
Sets a short description or logical name of the action.
Getting
Returns a short description or logical name of the action.
details
Setting
Sets the long description of the action and any relevant details such as configuration value changes.
Getting
Returns the long description of the action and any relevant details such as configuration value changes.
ID
Setting
Set the unique id of this object.
Getting
node
Setting
Sets the address of the node where the action occurred.
Getting
Returns the address of the node where the action occurred.
objectType
Setting
Sets the object type of the jive object.
Getting
timestamp
Setting
Sets the time when the action occurred.
Getting
Returns the time when the action occurred.
user
Setting
Sets the user who performed the action which resulted in this message.
Getting
Returns the user who performed the action which resulted in this message.