Class ReplaceOneModel<T>

  • Type Parameters:
    T - the type of document to replace. This can be of any type for which a Codec is registered

    @Deprecated(since="2021-05-27")
    public final class ReplaceOneModel<T>
    extends WriteModel<T>
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    A model describing the replacement of at most one document that matches the query filter.
    Since:
    3.0
    • Constructor Detail

      • ReplaceOneModel

        public ReplaceOneModel​(Bson filter,
                               T replacement)
        Deprecated.
        Construct a new instance.
        Parameters:
        filter - a document describing the query filter, which may not be null.
        replacement - the replacement document
      • ReplaceOneModel

        @Deprecated
        public ReplaceOneModel​(Bson filter,
                               T replacement,
                               UpdateOptions options)
        Construct a new instance.
        Parameters:
        filter - a document describing the query filter, which may not be null.
        replacement - the replacement document
        options - the options to apply
      • ReplaceOneModel

        public ReplaceOneModel​(Bson filter,
                               T replacement,
                               ReplaceOptions options)
        Deprecated.
        Construct a new instance.
        Parameters:
        filter - a document describing the query filter, which may not be null.
        replacement - the replacement document
        options - the options to apply
        Since:
        3.7
    • Method Detail

      • getFilter

        public Bson getFilter()
        Deprecated.
        Gets the query filter.
        Returns:
        the query filter
      • getReplacement

        public T getReplacement()
        Deprecated.
        Gets the document which will replace the document matching the query filter.
        Returns:
        the replacement document
      • getReplaceOptions

        public ReplaceOptions getReplaceOptions()
        Deprecated.
        Gets the ReplaceOptions to apply.
        Returns:
        the replace options
        Since:
        3.7
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object