Package org.springframework.data.convert
Interface EntityWriter<T,S> 
- Type Parameters:
 T- the entity type the converter can handleS- the store specific sink the converter is able to write to
- All Known Subinterfaces:
 EntityConverter<E,P, T, S> 
public interface EntityWriter<T,S> 
Interface to write objects into store specific sinks.
- Author:
 - Oliver Gierke
 
- 
Method Summary
 
- 
Method Details
- 
write
Writes the given source object into a store specific sink.- Parameters:
 source- the source to create an object of the given type from.sink- the sink to write into.
 
 -