@Provides @Named(MAPPER_NAME)
public ObjectMapper mapper(final Factory factory) {
ObjectMapper mapper = new ObjectMapper()
.registerModule(new JodaModule())
.registerModule(new GuavaModule())
.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.disable(DeserializationFeature.EAGER_DESERIALIZER_FETCH)
.disable(SerializationFeature.EAGER_SERIALIZER_FETCH);