AFAICT, this is wrong:
|
/** |
|
* Get the time when the record was created. |
|
* @return Date in 14 digit time format (UTC). |
|
* @see org.archive.util.ArchiveUtils#parse14DigitDate(String) |
|
*/ |
|
public abstract String getDate(); |
The implementations appear to generate full ISO datetime stamps, i.e. 2011-02-17T06:59:50Z rather than the implied 20110217065950 (although I think older version of the code did do that).
AFAICT, this is wrong:
webarchive-commons/src/main/java/org/archive/io/ArchiveRecordHeader.java
Lines 30 to 35 in bb36b6a
The implementations appear to generate full ISO datetime stamps, i.e.
2011-02-17T06:59:50Zrather than the implied20110217065950(although I think older version of the code did do that).