/* * Copyright 2017 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.server.api.marshalling.json.extension; import java.io.IOException; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.GregorianCalendar; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.core.JsonParser; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.Version; import com.fasterxml.jackson.databind.DeserializationContext; import com.fasterxml.jackson.databind.JsonDeserializer; import com.fasterxml.jackson.databind.JsonSerializer; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializerProvider; import com.fasterxml.jackson.databind.module.SimpleModule; import org.kie.server.api.marshalling.json.JSONMarshaller; import org.kie.server.api.marshalling.json.JSONMarshallerExtension; public class JSONMarshallerExtensionGregorianCalendar implements JSONMarshallerExtension { private static final GregorianCalendarDeser DESERIALIZER = new GregorianCalendarDeser(); private static final GregorianCalendarSer SERIALIZER = new GregorianCalendarSer(); private static final DateFormat FORMATTER = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); @Override public void extend(JSONMarshaller marshaller, ObjectMapper serializer, ObjectMapper deserializer) { registerModule(serializer); registerModule(deserializer); } private void registerModule(ObjectMapper objectMapper) { SimpleModule gregorianCalendarModule = new SimpleModule("gregoriancalendar-module", Version.unknownVersion()); gregorianCalendarModule.addDeserializer(GregorianCalendar.class, DESERIALIZER); gregorianCalendarModule.addSerializer(GregorianCalendar.class, SERIALIZER); objectMapper.registerModule(gregorianCalendarModule); } private static class GregorianCalendarDeser extends JsonDeserializer<GregorianCalendar> { @Override public GregorianCalendar deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException { GregorianCalendar gregorianCalendar = new GregorianCalendar(); try { String text = jp.getText(); Date date; date = FORMATTER.parse(text); gregorianCalendar.setTime(date); } catch (ParseException e) { throw new IOException(e); } return gregorianCalendar; } } private static class GregorianCalendarSer extends JsonSerializer<GregorianCalendar> { @Override public void serialize(GregorianCalendar value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException { String formattedValue = FORMATTER.format(value.getTime()); jgen.writeString(formattedValue); } } }