 |
-
-
Constructor Summary
Constructors
Constructor and Description |
MongoAction(com.mongodb.WriteConcern defaultWriteConcern,
MongoActionOperation mongoActionOperation,
String collectionName,
Class<?> entityType,
org.bson.Document document,
org.bson.Document query)
|
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
MongoAction
public MongoAction(@Nullable
com.mongodb.WriteConcern defaultWriteConcern,
MongoActionOperation mongoActionOperation,
String collectionName,
@Nullable
Class<?> entityType,
@Nullable
org.bson.Document document,
@Nullable
org.bson.Document query)
- Parameters:
defaultWriteConcern - the default write concern. Can be null.
mongoActionOperation - action being taken against the collection. Must not be null.
collectionName - the collection name, must not be null or empty.
entityType - the POJO that is being operated against. Can be null.
document - the converted Document from the POJO or Spring Update object. Can be null.
query - the converted Document from the Spring Query object. Can be null.
|
|