All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.mruoc.camunda.client.ObjectMapperFactory Maven / Gradle / Ivy

The newest version!
package uk.co.mruoc.camunda.client;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;

@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class ObjectMapperFactory {

    public static ObjectMapper build() {
        return new ObjectMapper()
                .registerModule(new CamundaModule())
                .disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy