com.microsoft.bingads.internal.restful.adaptor.CalendarSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.internal.restful.adaptor;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
public class CalendarSerializer extends StdSerializer {
private SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
public CalendarSerializer() {
this(null);
}
public CalendarSerializer(Class t) {
super(t);
}
@Override
public void serialize(Calendar value, JsonGenerator gen, SerializerProvider provider) throws IOException {
gen.writeString(jakarta.xml.bind.DatatypeConverter.printDateTime(value));
}
}