Skip to content

Commit 1282e8b

Browse files
committed
Fix @SInCE Javadoc annotations for EncryptOptions
JAVA-4597
1 parent 78c5c10 commit 1282e8b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class EncryptOptions {
3434
/**
3535
* The QueryType to use for "Indexed" queries
3636
*
37-
* @since 4.6
37+
* @since 4.7
3838
*/
3939
public enum QueryType {
4040
/**
@@ -127,7 +127,7 @@ public EncryptOptions keyAltName(final String keyAltName) {
127127
* <p>It is an error to set contentionFactor when algorithm is not "Indexed".
128128
* @param contentionFactor the contention factor, which must be {@code >= 0} or null.
129129
* @return this
130-
* @since 4.6
130+
* @since 4.7
131131
*/
132132
public EncryptOptions contentionFactor(@Nullable final Long contentionFactor) {
133133
this.contentionFactor = contentionFactor;
@@ -139,7 +139,7 @@ public EncryptOptions contentionFactor(@Nullable final Long contentionFactor) {
139139
*
140140
* @see #contentionFactor(Long)
141141
* @return the contention factor
142-
* @since 4.6
142+
* @since 4.7
143143
*/
144144
@Nullable
145145
public Long getContentionFactor() {
@@ -153,7 +153,7 @@ public Long getContentionFactor() {
153153
*
154154
* @param queryType the query type
155155
* @return this
156-
* @since 4.6
156+
* @since 4.7
157157
*/
158158
public EncryptOptions queryType(@Nullable final QueryType queryType) {
159159
this.queryType = queryType;
@@ -165,7 +165,7 @@ public EncryptOptions queryType(@Nullable final QueryType queryType) {
165165
*
166166
* @see #queryType(QueryType)
167167
* @return the queryType or null
168-
* @since 4.6
168+
* @since 4.7
169169
*/
170170
@Nullable
171171
public QueryType getQueryType() {

0 commit comments

Comments
 (0)