Class UpdateDescription
- java.lang.Object
-
- com.mongodb.client.model.changestream.UpdateDescription
-
@Deprecated(since="2021-05-27") public final class UpdateDescription extends java.lang.Object
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.The update description for changed fields in a$changeStream
operation.- Since:
- 3.6
-
-
Constructor Summary
Constructors Constructor Description UpdateDescription(java.util.List<java.lang.String> removedFields, BsonDocument updatedFields)
Deprecated.Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Deprecated.java.util.List<java.lang.String>
getRemovedFields()
Deprecated.Returns the removedFieldsBsonDocument
getUpdatedFields()
Deprecated.Returns the updatedFieldsint
hashCode()
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Constructor Detail
-
UpdateDescription
public UpdateDescription(@Nullable @BsonProperty("removedFields") java.util.List<java.lang.String> removedFields, @Nullable @BsonProperty("updatedFields") BsonDocument updatedFields)
Deprecated.Creates a new instance- Parameters:
removedFields
- the list of fields that have been removed.updatedFields
- the updated fields
-
-
Method Detail
-
getRemovedFields
@Nullable public java.util.List<java.lang.String> getRemovedFields()
Deprecated.Returns the removedFields- Returns:
- the removedFields
-
getUpdatedFields
@Nullable public BsonDocument getUpdatedFields()
Deprecated.Returns the updatedFields- Returns:
- the updatedFields
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-