Class MongoItemWriterBuilder<T>
java.lang.Object
org.springframework.batch.item.data.builder.MongoItemWriterBuilder<T>
A builder implementation for the
MongoItemWriter
- Since:
- 4.0
- Author:
- Glenn Renfro
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Validates and builds aMongoItemWriter
.collection
(String collection) Set the name of the Mongo collection to be written to.delete
(boolean delete) Indicates if the items being passed to the writer are to be saved or removed from the data store.template
(org.springframework.data.mongodb.core.MongoOperations template) Set theMongoOperations
to be used to save items to be written.
-
Constructor Details
-
MongoItemWriterBuilder
public MongoItemWriterBuilder()
-
-
Method Details
-
delete
Indicates if the items being passed to the writer are to be saved or removed from the data store. If set to false (default), the items will be saved. If set to true, the items will be removed.- Parameters:
delete
- removal indicator- Returns:
- The current instance of the builder
- See Also:
-
template
public MongoItemWriterBuilder<T> template(org.springframework.data.mongodb.core.MongoOperations template) Set theMongoOperations
to be used to save items to be written.- Parameters:
template
- the template implementation to be used.- Returns:
- The current instance of the builder
- See Also:
-
collection
Set the name of the Mongo collection to be written to.- Parameters:
collection
- the name of the collection.- Returns:
- The current instance of the builder
- See Also:
-
build
Validates and builds aMongoItemWriter
.- Returns:
- a
MongoItemWriter
-