Spring Data Document

Uses of Interface
org.springframework.data.document.mongodb.MongoWriter

Packages that use MongoWriter
org.springframework.data.document.mongodb MongoDB core support. 
org.springframework.data.document.mongodb.convert   
org.springframework.data.document.mongodb.repository MongoDB specific repository implementation. 
 

Uses of MongoWriter in org.springframework.data.document.mongodb
 

Subinterfaces of MongoWriter in org.springframework.data.document.mongodb
 interface MongoReaderWriter<T>
           
 

Methods in org.springframework.data.document.mongodb with parameters of type MongoWriter
<T> void
MongoTemplate.insert(String collectionName, T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insert(String collectionName, T objectToSave, MongoWriter<T> writer)
          Insert the object into the specified collection.
<T> void
MongoTemplate.insert(T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insert(T objectToSave, MongoWriter<T> writer)
          Insert the object into the default collection.
<T> void
MongoTemplate.insertList(List<? extends T> listToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insertList(List<? extends T> listToSave, MongoWriter<T> writer)
          Insert a list of objects into the default collection using the provided MongoWriter instance
<T> void
MongoTemplate.insertList(String collectionName, List<? extends T> listToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.insertList(String collectionName, List<? extends T> listToSave, MongoWriter<T> writer)
          Insert a list of objects into the specified collection using the provided MongoWriter instance
<T> void
MongoTemplate.save(String collectionName, T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.save(String collectionName, T objectToSave, MongoWriter<T> writer)
          Save the object into the specified collection using the provided writer.
<T> void
MongoTemplate.save(T objectToSave, MongoWriter<T> writer)
           
<T> void
MongoOperations.save(T objectToSave, MongoWriter<T> writer)
          Save the object into the default collection using the provided writer.
 

Uses of MongoWriter in org.springframework.data.document.mongodb.convert
 

Subinterfaces of MongoWriter in org.springframework.data.document.mongodb.convert
 interface MongoConverter
           
 

Classes in org.springframework.data.document.mongodb.convert that implement MongoWriter
 class MappingMongoConverter
          MongoConverter that uses a MappingContext to do sophisticated mapping of domain objects to DBObject.
 class SimpleMongoConverter
          Basic MongoConverter implementation to convert between domain classes and DBObjects.
 

Uses of MongoWriter in org.springframework.data.document.mongodb.repository
 

Constructors in org.springframework.data.document.mongodb.repository with parameters of type MongoWriter
ConvertingParameterAccessor(MongoWriter<Object> writer, org.springframework.data.repository.query.ParameterAccessor delegate)
          Creates a new ConvertingParameterAccessor with the given MongoWriter and delegate.
 


Spring Data Document

Copyright © 2011. All Rights Reserved.