Class LogEntryDTO
- java.lang.Object
-
- com.levigo.jadice.server.rest.dto.LogEntryDTO
-
public class LogEntryDTO extends Object
Definition of a log entry
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LogEntryDTO.Level
The severity of the log entry
-
Constructor Summary
Constructors Constructor Description LogEntryDTO()
This is a constructor for JAX-B use onlyLogEntryDTO(XMLGregorianCalendar timestamp, LogEntryDTO.Level level, String id, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
LogEntryDTO.Level
getLevel()
String
getMessage()
XMLGregorianCalendar
getTimestamp()
-
-
-
Constructor Detail
-
LogEntryDTO
public LogEntryDTO()
This is a constructor for JAX-B use only
-
LogEntryDTO
public LogEntryDTO(XMLGregorianCalendar timestamp, LogEntryDTO.Level level, String id, String message)
-
-
Method Detail
-
getLevel
public LogEntryDTO.Level getLevel()
-
getTimestamp
public XMLGregorianCalendar getTimestamp()
-
getId
public String getId()
-
getMessage
public String getMessage()
-
-