Package COM.activesw.api.client
Class BrokerServerLogEntry
- java.lang.Object
-
- COM.activesw.api.client.BrokerServerLogEntry
-
public class BrokerServerLogEntry extends java.lang.Object
This class is a data structure used to describe server log entry information.
-
-
Field Summary
Fields Modifier and Type Field Description short
entry_msg_id
The message id of this entry in the server log.java.lang.String
entry_msg_text
The message text of this entry in the server log.short
entry_type
The type of this entry in the server log.static int
SERVER_LOG_MESSAGE_ALERT
static int
SERVER_LOG_MESSAGE_INFO
static int
SERVER_LOG_MESSAGE_UNKNOWN
static int
SERVER_LOG_MESSAGE_WARNING
BrokerDate
time_stamp
The date of this entry in the server log.
-
Constructor Summary
Constructors Constructor Description BrokerServerLogEntry()
Create a broker server log information object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns a string with the server log entry in a form suitable for human viewing.
-
-
-
Field Detail
-
SERVER_LOG_MESSAGE_UNKNOWN
public static final int SERVER_LOG_MESSAGE_UNKNOWN
- See Also:
- Constant Field Values
-
SERVER_LOG_MESSAGE_INFO
public static final int SERVER_LOG_MESSAGE_INFO
- See Also:
- Constant Field Values
-
SERVER_LOG_MESSAGE_WARNING
public static final int SERVER_LOG_MESSAGE_WARNING
- See Also:
- Constant Field Values
-
SERVER_LOG_MESSAGE_ALERT
public static final int SERVER_LOG_MESSAGE_ALERT
- See Also:
- Constant Field Values
-
time_stamp
public BrokerDate time_stamp
The date of this entry in the server log.
-
entry_type
public short entry_type
The type of this entry in the server log. Valid values are BrokerServerLogEntry.SERVER_LOG_MESSAGE_*.
-
entry_msg_id
public short entry_msg_id
The message id of this entry in the server log.
-
entry_msg_text
public java.lang.String entry_msg_text
The message text of this entry in the server log.
-
-