use of nl.knaw.huygens.timbuctoo.server.mediatypes.v2.search.FacetValueDeserializer in project timbuctoo by HuygensING.
the class TimbuctooV4 method setupObjectMapping.
private void setupObjectMapping(Environment environment) {
// object mapping
SimpleModule module = new SimpleModule();
module.addDeserializer(FacetValue.class, new FacetValueDeserializer());
environment.getObjectMapper().registerModule(module);
}
Aggregations