Skip to content

Commit c91251b

Browse files
committed
Docs: Updated manual links for the 3.2 release
JAVA-1987
1 parent 83db912 commit c91251b

33 files changed

+56
-4
lines changed

driver-async/src/main/com/mongodb/async/client/MongoClientSettings.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ public Builder writeConcern(final WriteConcern writeConcern) {
230230
* @return {@code this}
231231
* @since 3.2
232232
* @mongodb.server.release 3.2
233+
* @mongodb.driver.manual reference/readConcern/ Read Concern
233234
*/
234235
public Builder readConcern(final ReadConcern readConcern) {
235236
this.readConcern = notNull("readConcern", readConcern);
@@ -334,6 +335,7 @@ public WriteConcern getWriteConcern() {
334335
* @return the read concern
335336
* @since 3.2
336337
* @mongodb.server.release 3.2
338+
* @mongodb.driver.manual reference/readConcern/ Read Concern
337339
*/
338340
public ReadConcern getReadConcern() {
339341
return readConcern;

driver-async/src/main/com/mongodb/async/client/MongoCollection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public interface MongoCollection<TDocument> {
100100
* @return the {@link com.mongodb.ReadConcern}
101101
* @since 3.2
102102
* @mongodb.server.release 3.2
103+
* @mongodb.driver.manual reference/readConcern/ Read Concern
103104
*/
104105
ReadConcern getReadConcern();
105106

@@ -143,6 +144,7 @@ public interface MongoCollection<TDocument> {
143144
* @return a new MongoCollection instance with the different ReadConcern
144145
* @since 3.2
145146
* @mongodb.server.release 3.2
147+
* @mongodb.driver.manual reference/readConcern/ Read Concern
146148
*/
147149
MongoCollection<TDocument> withReadConcern(ReadConcern readConcern);
148150

driver-async/src/main/com/mongodb/async/client/MongoDatabase.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public interface MongoDatabase {
7070
* @return the {@link com.mongodb.ReadConcern}
7171
* @since 3.2
7272
* @mongodb.server.release 3.2
73+
* @mongodb.driver.manual reference/readConcern/ Read Concern
7374
*/
7475
ReadConcern getReadConcern();
7576

@@ -104,6 +105,7 @@ public interface MongoDatabase {
104105
* @return a new MongoDatabase instance with the different ReadConcern
105106
* @since 3.2
106107
* @mongodb.server.release 3.2
108+
* @mongodb.driver.manual reference/readConcern/ Read Concern
107109
*/
108110
MongoDatabase withReadConcern(ReadConcern readConcern);
109111

driver-core/src/main/com/mongodb/ReadConcern.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* The readConcern option allows clients to choose a level of isolation for their reads.
2626
*
2727
* @mongodb.server.release 3.2
28+
* @mongodb.driver.manual reference/readConcern/ Read Concern
2829
* @since 3.2
2930
*/
3031
public final class ReadConcern {

driver-core/src/main/com/mongodb/ReadConcernLevel.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* level of isolation for their reads.
2727
*
2828
* @mongodb.server.release 3.2
29+
* @mongodb.driver.manual reference/readConcern/ Read Concern
2930
* @since 3.2
3031
*/
3132
public enum ReadConcernLevel {

driver-core/src/main/com/mongodb/bulk/IndexRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ public IndexRequest storageEngine(final BsonDocument storageEngineOptions) {
464464
*
465465
* @return the filter expression for the documents to be included in the index or null if not set
466466
* @mongodb.server.release 3.2
467+
* @mongodb.driver.manual /core/index-partial/ Partial Indexes
467468
* @since 3.2
468469
*/
469470
public BsonDocument getPartialFilterExpression() {
@@ -476,6 +477,7 @@ public BsonDocument getPartialFilterExpression() {
476477
* @param partialFilterExpression the filter expression for the documents to be included in the index
477478
* @return this
478479
* @mongodb.server.release 3.2
480+
* @mongodb.driver.manual /core/index-partial/ Partial Indexes
479481
* @since 3.2
480482
*/
481483
public IndexRequest partialFilterExpression(final BsonDocument partialFilterExpression) {

driver-core/src/main/com/mongodb/client/model/IndexOptionDefaults.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@
2222
* The default options for a collection to apply on the creation of indexes.
2323
*
2424
* @since 3.2
25+
* @mongodb.driver.manual reference/method/db.createCollection/ Create Collection
2526
* @mongodb.driver.manual reference/command/createIndexes Index options
2627
* @mongodb.server.release 3.2
2728
*/
2829
public final class IndexOptionDefaults {
2930
private Bson storageEngine;
3031

3132
/**
32-
* Gets the storage engine options document for this index.
33+
* Gets the default storage engine options document for indexes.
3334
*
3435
* @return the storage engine options
3536
*/
@@ -38,7 +39,7 @@ public Bson getStorageEngine() {
3839
}
3940

4041
/**
41-
* Sets the storage engine options document for this index.
42+
* Sets the default storage engine options document for indexes.
4243
*
4344
* @param storageEngine the storage engine options
4445
* @return this

driver-core/src/main/com/mongodb/client/model/InsertManyOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
* The options to apply to an operation that inserts multiple documents into a collection.
2121
*
2222
* @since 3.0
23-
* @mongodb.driver.manual tutorial/insert-documents/ Insert
23+
* @mongodb.driver.manual tutorial/insert-documents/ Insert Tutorial
24+
* @mongodb.driver.manual reference/command/insert/ Insert Command
2425
*/
2526
public final class InsertManyOptions {
2627
private boolean ordered = true;

driver-core/src/main/com/mongodb/client/model/InsertOneOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
*
2222
* @since 3.2
2323
* @mongodb.server.release 3.2
24-
* @mongodb.driver.manual tutorial/insert-documents/ Insert
24+
* @mongodb.driver.manual tutorial/insert-documents/ Insert Tutorial
25+
* @mongodb.driver.manual reference/command/insert/ Insert Command
2526
*/
2627
public final class InsertOneOptions {
2728
private Boolean bypassDocumentValidation;

driver-core/src/main/com/mongodb/client/model/UpdateOptions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* @since 3.0
2323
* @mongodb.driver.manual tutorial/modify-documents/ Updates
2424
* @mongodb.driver.manual reference/operator/update/ Update Operators
25+
* @mongodb.driver.manual reference/command/update/ Update Command
2526
*/
2627
public class UpdateOptions {
2728
private boolean upsert;

0 commit comments

Comments
 (0)