Example usage for org.springframework.data.repository.query QueryMethod subclass-usage

List of usage examples for org.springframework.data.repository.query QueryMethod subclass-usage

Introduction

In this page you can find the example usage for org.springframework.data.repository.query QueryMethod subclass-usage.

Usage

From source file egov.data.ibatis.repository.query.AnnotationBasedSqlMapQueryMethod.java

/**
 * Repository ???  {@link Namespace} ? ? {@link Statement}   ?
 * 
 * @author Yunseok Choi
 *
 */

From source file com.create.mybatis.repository.query.MyBatisQueryMethod.java

/**
 * MyBatis specific implementation of {@link QueryMethod}.
 */
public class MyBatisQueryMethod extends QueryMethod {

    private final Method method;

From source file com._4dconcept.springframework.data.marklogic.repository.query.MarklogicQueryMethod.java

/**
 * Marklogic specific implementation of {@link QueryMethod}.
 *
 * @author Stphane Toussaint
 */
public class MarklogicQueryMethod extends QueryMethod {

From source file org.socialsignin.spring.data.dynamodb.repository.query.DynamoDBQueryMethod.java

/**
 * @author Michael Lavelle
 */
public class DynamoDBQueryMethod<T, ID extends Serializable> extends QueryMethod {

    private final Method method;

From source file com.frank.search.solr.repository.query.SolrQueryMethod.java

/**
 * Solr specific implementation of {@link org.springframework.data.repository.query.QueryMethod} taking care of {@link com.frank.search.solr.repository.Query}
 * 
 * @author Christoph Strobl
 * @author Luke Corpe
 * @author Andrey Paramonov