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
There are several ways to **set** these authentication properties:
140
140
141
-
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Authentication.md#authentication-with-environment-variables)
142
-
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Authentication.md#programmatic-authentication)
143
-
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Authentication.md#authentication-with-external-configuration)
141
+
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Authentication.md#authentication-with-environment-variables)
142
+
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Authentication.md#programmatic-authentication)
143
+
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Authentication.md#authentication-with-external-configuration)
144
144
145
145
The following section describes the different authentication types and provides environment variable examples.
146
146
Examples for other configuration methods are available by following the provided links.
147
147
148
148
### Authentication
149
149
150
-
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Authentication.md)
150
+
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Authentication.md)
151
151
for comprehensive details of all the available authentication methods and how to configure them with environment settings
152
152
or programmatically.
153
153
@@ -196,10 +196,10 @@ List<String> response =
196
196
System.out.println(response);
197
197
```
198
198
199
-
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Examples.md) for creating a database
199
+
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Examples.md) for creating a database
200
200
and document create, read, update and delete operations.
201
201
202
-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/examples#examples-for-java).
202
+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/examples#examples-for-java).
203
203
204
204
### Error handling
205
205
@@ -222,7 +222,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`.
222
222
The returned byte stream allows the response body to be consumed
223
223
without triggering JSON unmarshalling that is typically performed by the SDK.
224
224
225
-
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Examples.md#3-update-your-previously-created-document) section
225
+
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Examples.md#3-update-your-previously-created-document) section
226
226
contains examples for both request and response byte stream cases.
227
227
228
228
The API reference contains further examples of using byte streams.
@@ -238,7 +238,7 @@ Expand them to see examples of:
@@ -261,7 +261,7 @@ If you encounter an issue with the project, you are welcome to submit a
261
261
262
262
Before you submit a bug report, search for
263
263
[similar issues](https://github.com/IBM/cloudant-java-sdk/issues?q=is%3Aissue) and review the
264
-
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
264
+
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
265
265
266
266
Please consult the [security policy](https://github.com/IBM/cloudant-java-sdk/security/policy) before opening security related issues.
267
267
@@ -291,8 +291,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.
291
291
292
292
## Contributing
293
293
294
-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/CONTRIBUTING.md).
294
+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/CONTRIBUTING.md).
295
295
296
296
## License
297
297
298
-
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.15/LICENSE).
298
+
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.16/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.15/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77
-
*[Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
76
+
*[Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77
+
*[Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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