コード例 #1
0
 public RevisionResponseHandler(ObjectMapper om) {
   Assert.notNull(om, "ObjectMapper cannot be null");
   objectMapper = om;
 }
コード例 #2
0
ファイル: ViewQuery.java プロジェクト: rrva/Ektorp
 /**
  * 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;
 }