use of com.b2international.collections.PrimitiveCollectionModule in project snow-owl by b2ihealthcare.
the class BaseChangeProcessorTest method configureMapper.
@Override
protected void configureMapper(ObjectMapper mapper) {
super.configureMapper(mapper);
mapper.setSerializationInclusion(Include.NON_NULL);
mapper.registerModule(new PrimitiveCollectionModule());
}
use of com.b2international.collections.PrimitiveCollectionModule in project snow-owl by b2ihealthcare.
the class SnomedEclLabelerRequestTest method configureMapper.
@Override
protected void configureMapper(ObjectMapper mapper) {
super.configureMapper(mapper);
mapper.setSerializationInclusion(Include.NON_NULL);
mapper.registerModule(new PrimitiveCollectionModule());
}
use of com.b2international.collections.PrimitiveCollectionModule in project snow-owl by b2ihealthcare.
the class BaseValidationTest method configureMapper.
@Override
@OverridingMethodsMustInvokeSuper
protected void configureMapper(ObjectMapper mapper) {
super.configureMapper(mapper);
mapper.setSerializationInclusion(Include.NON_NULL);
mapper.registerModule(new PrimitiveCollectionModule());
}
Aggregations