286287288289290291292293
} } } return entityDocumentList; } catch (IOException ex) { throw new CouchJsonException(ex); } }
370371372373374375376377
} return json; } } catch (IOException e) { throw new CouchJsonException(e); } }
8182838485868788
@Override public CouchDatabaseInfo readDatabaseInfo(String json) { try { return objectMapper.readValue(json, CouchDatabaseInfo.class); } catch (IOException e) { throw new CouchJsonException(e); } }
124125126127128129130131
} return new TextDocument(documentId, revision, null, json); } } catch (IOException e) { throw new CouchJsonException(e); } }
195196197198199200201202
} } } return documentList; } catch (IOException ex) { throw new CouchJsonException(ex); } }
211212213214215216217218
} return finalizeEntityDoc(getRequestFactory, entityMeta, parser, null, json); } } catch (IOException e) { throw new CouchJsonException(e); } }
257258259260261262263264
336337338339340341342343