diff --git a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/test/util/CleanMongoDB.java b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/test/util/CleanMongoDB.java index f4211525b..25b8e7232 100644 --- a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/test/util/CleanMongoDB.java +++ b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/test/util/CleanMongoDB.java @@ -99,7 +99,7 @@ public class CleanMongoDB implements TestRule { } /** - * Removes everything by dropping every single {@link DB}. + * Removes everything by dropping every single {@link MongoDatabase}. * * @return */ @@ -111,7 +111,7 @@ public class CleanMongoDB implements TestRule { } /** - * Removes everything from the databases with given name by dropping the according {@link DB}. + * Removes everything from the databases with given name by dropping the according {@link MongoDatabase}. * * @param dbNames * @return @@ -125,7 +125,7 @@ public class CleanMongoDB implements TestRule { } /** - * Drops the {@link DBCollection} with given names from every single {@link DB} containing them. + * Drops the {@link MongoCollection} with given names from every single {@link MongoDatabase} containing them. * * @param collectionNames * @return @@ -135,7 +135,7 @@ public class CleanMongoDB implements TestRule { } /** - * Drops the {@link DBCollection} with given names from the named {@link DB}. + * Drops the {@link MongoCollection} with given names from the named {@link MongoDatabase}. * * @param dbName * @param collectionNames @@ -150,7 +150,7 @@ public class CleanMongoDB implements TestRule { } /** - * Drops all index structures from every single {@link DBCollection}. + * Drops all index structures from every single {@link MongoCollection}. * * @return */ @@ -159,7 +159,7 @@ public class CleanMongoDB implements TestRule { } /** - * Drops all index structures from every single {@link DBCollection}. + * Drops all index structures from every single {@link MongoCollection}. * * @param collectionNames * @return @@ -185,7 +185,7 @@ public class CleanMongoDB implements TestRule { } /** - * Defines the {@link DB}s to be used.
+ * Defines the {@link MongoDatabase}s to be used.
* Impact along with {@link CleanMongoDB#clean(Struct...)}: *