List of usage examples for org.joda.time.format ISODateTimeFormat dateHourMinuteSecondMillis
public static DateTimeFormatter dateHourMinuteSecondMillis()
From source file:org.lable.rfc3881.auditlogger.api.Event.java
License:Apache License
@Override public String toString() { return "ID: " + getId() + "\nAction: " + getAction().getDisplayName() + "\nAt: " + getHappenedAt().toString(ISODateTimeFormat.dateHourMinuteSecondMillis().withZoneUTC()) + " (UTC)" + "\nOutcome: " + getOutcome().getDisplayName() + "\nType: " + getTypes(); }