At the moment I need to write the following:
exampleCollection.updateMany(new Document(), set("status", status))
It would be a lot more self-descriptive to use a method like Filters.empty() to achieve the same result:
exampleCollection.updateMany(empty(), set("status", status))