You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- IBM Cloudant (Gen 2) - see [compatibility notes](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/KNOWN_ISSUES.md#cloudant-gen-2-compatibility).
64
+
- IBM Cloudant (Gen 2) - see [compatibility notes](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/KNOWN_ISSUES.md#cloudant-gen-2-compatibility).
65
65
-[Apache CouchDB 3.x](https://docs.couchdb.org/en/stable/) for data operations.
66
66
- Includes all the most popular and latest supported endpoints for
67
67
applications.
68
68
- Handles the authentication.
69
69
- Familiar user experience with IBM Cloud SDKs.
70
70
- Flexibility to use either built-in models or byte-based requests and responses for documents.
There are several ways to **set** these authentication properties:
141
141
142
-
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#authentication-with-environment-variables)
143
-
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#programmatic-authentication)
144
-
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#authentication-with-external-configuration)
142
+
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#authentication-with-environment-variables)
143
+
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#programmatic-authentication)
144
+
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#authentication-with-external-configuration)
145
145
146
146
The following section describes the different authentication types and provides environment variable examples.
147
147
Examples for other configuration methods are available by following the provided links.
148
148
149
149
### Authentication
150
150
151
-
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md)
151
+
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md)
152
152
for comprehensive details of all the available authentication methods and how to configure them with environment settings
153
153
or programmatically.
154
154
@@ -197,10 +197,10 @@ List<String> response =
197
197
System.out.println(response);
198
198
```
199
199
200
-
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Examples.md) for creating a database
200
+
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Examples.md) for creating a database
201
201
and document create, read, update and delete operations.
202
202
203
-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/examples#examples-for-java).
203
+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/examples#examples-for-java).
204
204
205
205
### Error handling
206
206
@@ -223,7 +223,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`.
223
223
The returned byte stream allows the response body to be consumed
224
224
without triggering JSON unmarshalling that is typically performed by the SDK.
225
225
226
-
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Examples.md#3-update-your-previously-created-document) section
226
+
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Examples.md#3-update-your-previously-created-document) section
227
227
contains examples for both request and response byte stream cases.
228
228
229
229
The API reference contains further examples of using byte streams.
@@ -239,7 +239,7 @@ Expand them to see examples of:
@@ -262,7 +262,7 @@ If you encounter an issue with the project, you are welcome to submit a
262
262
263
263
Before you submit a bug report, search for
264
264
[similar issues](https://github.com/IBM/cloudant-java-sdk/issues?q=is%3Aissue) and review the
265
-
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
265
+
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
266
266
267
267
Please consult the [security policy](https://github.com/IBM/cloudant-java-sdk/security/policy) before opening security related issues.
268
268
@@ -292,8 +292,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.
292
292
293
293
## Contributing
294
294
295
-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/CONTRIBUTING.md).
295
+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/CONTRIBUTING.md).
296
296
297
297
## License
298
298
299
-
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/LICENSE).
299
+
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/LICENSE).
Copy file name to clipboardExpand all lines: docs/Pagination.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,22 +73,22 @@ then a `429 Too Many Requests` error occurs.
73
73
Pagination is available for these operations:
74
74
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postalldocs)
75
75
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionalldocs)
76
-
*[Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77
-
*[Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
76
+
*[Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77
+
*[Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
78
78
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=java#postdesigndocs)
0 commit comments