Ejemplo n.º 1
0
 public LogEvent(LogRequest req) {
   this();
   getId().setAppId(req.getApplicationId());
   setLevel(req.getLevel());
   setLogText(req.getLogText());
   setExecId(req.getExecutionId());
   getId().setTimestamp(CommonHelper.makeTimeUuid(req.getTimestamp()));
   Assert.isTrue(
       req.getTimestamp() == getId().getTimestampAsLong(),
       "Timestamp -> TimeUUID conversion incorrect");
 }