public RevisionResponseHandler(ObjectMapper om) { Assert.notNull(om, "ObjectMapper cannot be null"); objectMapper = om; }
/** * Bring your own ObjectMapper. The mapper is used when serializing keys when building the query. * * @param om */ public ViewQuery(ObjectMapper om) { Assert.notNull(om, "ObjectMapper may not be null"); mapper = om; }