public RevisionResponseHandler(ObjectMapper om) {
   Assert.notNull(om, "ObjectMapper cannot be null");
   objectMapper = om;
 }
Пример #2
0
 /**
  * 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;
 }