110111112113114115116117
@Override public CouchDatabaseInfo readDatabaseInfo(String json) { try { return objectMapper.readValue(json, CouchDatabaseInfo.class); } catch (IOException e) { throw new CouchJsonException(e); } }
153154155156157158159160
} return new TextDocument(documentId, revision, null, json); } } catch (IOException e) { throw new CouchJsonException(e); } }
224225226227228229230231
} } } return documentList; } catch (IOException ex) { throw new CouchJsonException(ex); } }
240241242243244245246247
} return finalizeEntityDoc(getRequestFactory, entityMeta, parser, null, json); } } catch (IOException e) { throw new CouchJsonException(e); } }
286287288289290291292293
} } } return entityDocumentList; } catch (IOException ex) { throw new CouchJsonException(ex); } }
370371372373374375376377
} return json; } } catch (IOException e) { throw new CouchJsonException(e); } }