Example usage for org.springframework.data.convert EntityWriter interface-usage

List of usage examples for org.springframework.data.convert EntityWriter interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.convert EntityWriter interface-usage.

Usage

From source file org.springdata.ehcache.convert.EhcacheWriter.java

/**
 * EntityWriter templated interface
 * 
 * @author Alex Shvid
 * 
 * @param <T>

From source file com._4dconcept.springframework.data.marklogic.core.convert.MarklogicWriter.java

/**
 * EntityWriter able of writing to MarklogicContentHolder
 *
 * @author Stphane Toussaint
 */
public interface MarklogicWriter<T> extends EntityWriter<T, MarklogicContentHolder> {

From source file com.frank.search.solr.core.convert.SolrConverter.java

/**
 * @author Christoph Strobl
 */
public interface SolrConverter extends

        EntityConverter<SolrPersistentEntity<?>, SolrPersistentProperty, Object, Map<String, ?>>,

From source file com.couchbase.spring.core.convert.CouchbaseWriter.java

public interface CouchbaseWriter<T, ConvertedCouchbaseDocument>
        extends EntityWriter<T, ConvertedCouchbaseDocument> {

}

From source file io.twipple.springframework.data.clusterpoint.convert.ClusterpointEntityWriter.java

/**
 * Marker interface for the Clusterpoint {@link EntityWriter}.
 *
 * @author Olegs Briska
 */
public interface ClusterpointEntityWriter extends EntityWriter<Object, ClusterpointDocument> {