com.emc.ia.sip.assembly.stringtemplate.XmlDateRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoarchive-sip-sdk-stringtemplate Show documentation
Show all versions of infoarchive-sip-sdk-stringtemplate Show documentation
A library for building SIP PDI using the StringTemplate template engine
/*
* Copyright (c) 2016 EMC Corporation. All Rights Reserved.
*/
package com.emc.ia.sip.assembly.stringtemplate;
import java.util.Date;
import java.util.Locale;
import org.stringtemplate.v4.AttributeRenderer;
import com.emc.ia.sdk.support.datetime.Dates;
class XmlDateRenderer implements AttributeRenderer {
@Override
public String toString(Object o, String formatString, Locale locale) {
return Dates.toIso((Date)o);
}
}