org.springframework.data.mongodb.core.convert
Interface MongoWriter<T>

Type Parameters:
T - the type of the object to convert to a DBObject
All Superinterfaces:
org.springframework.data.convert.EntityWriter<T,com.mongodb.DBObject>
All Known Subinterfaces:
MongoConverter
All Known Implementing Classes:
AbstractMongoConverter, MappingMongoConverter

public interface MongoWriter<T>
extends org.springframework.data.convert.EntityWriter<T,com.mongodb.DBObject>

A MongoWriter is responsible for converting an object of type T to the native MongoDB representation DBObject.

Author:
Mark Pollack, Thomas Risberg, Oliver Gierke

Method Summary
 Object convertToMongoType(Object obj)
          Converts the given object into one Mongo will be able to store natively.
 
Methods inherited from interface org.springframework.data.convert.EntityWriter
write
 

Method Detail

convertToMongoType

Object convertToMongoType(Object obj)
Converts the given object into one Mongo will be able to store natively. If the given object can already be stored as is, no conversion will happen.

Parameters:
obj -
Returns:


Copyright © 2011. All Rights Reserved.