Package com.sodius.mdw.server.launch
Interface LogEntry
-
public interface LogEntryDescribes a log message.This interface is not intended to be implemented by clients.
- See Also:
Launch.getLogEntries()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LogEntryKindgetKind()Returns the type of log.StringgetMessage()Returns the logged message.longgetTime()Returns the time at which the message was logged.
-
-
-
Method Detail
-
getKind
LogEntryKind getKind()
Returns the type of log.- Returns:
- the type of log.
-
getMessage
String getMessage()
Returns the logged message.- Returns:
- the logged message.
-
getTime
long getTime()
Returns the time at which the message was logged. Time is expressed as the number of milliseconds since January 1, 1970, 00:00:00 GMT.- Returns:
- the time at which the message was logged.
-
-