
uk.co.mruoc.camunda.client.ObjectMapperFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-rest-client Show documentation
Show all versions of camunda-rest-client Show documentation
Template repo to speed up creating new library projects
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