Class DeleteManyModel<T>

  • Type Parameters:
    T - the type of document to update. In practice this doesn't actually apply to updates but is here for consistency with the other write models

    @Deprecated(since="2021-05-27")
    public final class DeleteManyModel<T>
    extends WriteModel<T>
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    A model describing the removal of all documents matching the query filter.
    Since:
    3.0
    • Constructor Detail

      • DeleteManyModel

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

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

      • getFilter

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

        public DeleteOptions getOptions()
        Deprecated.
        Gets the options to apply.
        Returns:
        the options
        Since:
        3.4
      • toString

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