/driver-legacy/src/main/com/mongodb/InsertOptions.java

http://github.com/mongodb/mongo-java-driver · Java · 121 lines · 39 code · 12 blank · 70 comment · 0 complexity · af041b241a4feedfb80f3e69943aca7e MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb;
  17. import com.mongodb.lang.Nullable;
  18. /**
  19. * Options related to insertion of documents into MongoDB. The setter methods return {@code this} so that a chaining style can be used.
  20. *
  21. * @since 2.13
  22. * @mongodb.driver.manual tutorial/insert-documents/ Insert Tutorial
  23. */
  24. public final class InsertOptions {
  25. private WriteConcern writeConcern;
  26. private boolean continueOnError;
  27. private DBEncoder dbEncoder;
  28. private Boolean bypassDocumentValidation;
  29. /**
  30. * Set the write concern to use for the insert.
  31. *
  32. * @param writeConcern the write concern
  33. * @return this
  34. */
  35. public InsertOptions writeConcern(@Nullable final WriteConcern writeConcern) {
  36. this.writeConcern = writeConcern;
  37. return this;
  38. }
  39. /**
  40. * Set whether documents will continue to be inserted after a failure to insert one.
  41. *
  42. * @param continueOnError whether to continue on error
  43. * @return this
  44. */
  45. public InsertOptions continueOnError(final boolean continueOnError) {
  46. this.continueOnError = continueOnError;
  47. return this;
  48. }
  49. /**
  50. * Set the encoder to use for the documents.
  51. *
  52. * @param dbEncoder the encoder
  53. * @return this
  54. */
  55. public InsertOptions dbEncoder(@Nullable final DBEncoder dbEncoder) {
  56. this.dbEncoder = dbEncoder;
  57. return this;
  58. }
  59. /**
  60. * The write concern to use for the insertion. By default the write concern configured for the DBCollection instance will be used.
  61. *
  62. * @return the write concern, or null if the default will be used.
  63. */
  64. @Nullable
  65. public WriteConcern getWriteConcern() {
  66. return writeConcern;
  67. }
  68. /**
  69. * Whether documents will continue to be inserted after a failure to insert one (most commonly due to a duplicate key error). Note that
  70. * this only is relevant for multi-document inserts. The default value is false.
  71. *
  72. * @return whether insertion will continue on error.
  73. */
  74. public boolean isContinueOnError() {
  75. return continueOnError;
  76. }
  77. /**
  78. * The encoder to use for the documents. By default the codec configured for the DBCollection instance will be used.
  79. *
  80. * @return the encoder, or null if the default will be used
  81. */
  82. @Nullable
  83. public DBEncoder getDbEncoder() {
  84. return dbEncoder;
  85. }
  86. /**
  87. * Gets whether to bypass document validation, or null if unspecified. The default is null.
  88. *
  89. * @return whether to bypass document validation, or null if unspecified.
  90. * @since 2.14
  91. * @mongodb.server.release 3.2
  92. */
  93. @Nullable
  94. public Boolean getBypassDocumentValidation() {
  95. return bypassDocumentValidation;
  96. }
  97. /**
  98. * Sets whether to bypass document validation.
  99. *
  100. * @param bypassDocumentValidation whether to bypass document validation, or null if unspecified
  101. * @return this
  102. * @since 2.14
  103. * @mongodb.server.release 3.2
  104. */
  105. public InsertOptions bypassDocumentValidation(@Nullable final Boolean bypassDocumentValidation) {
  106. this.bypassDocumentValidation = bypassDocumentValidation;
  107. return this;
  108. }
  109. }