Removed Z at the end of dateTime to make it compatible with VIVO
This commit is contained in:
parent
988df26e7f
commit
de48a6b09d
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ public class DocumentStructure {
|
||||||
|
|
||||||
private void addModificationTime(Resource mainResource) {
|
private void addModificationTime(Resource mainResource) {
|
||||||
Property property = m.createProperty(TS + MODIFICATION_TIME);
|
Property property = m.createProperty(TS + MODIFICATION_TIME);
|
||||||
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
|
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
|
||||||
sd.setTimeZone(TimeZone.getTimeZone("GMT"));
|
sd.setTimeZone(TimeZone.getTimeZone("GMT"));
|
||||||
String todayAsString = sd.format(currentTime);
|
String todayAsString = sd.format(currentTime);
|
||||||
mainResource.addProperty( property, todayAsString);
|
mainResource.addProperty( property, todayAsString);
|
||||||
|
|
Loading…
Add table
Reference in a new issue