Example usage for org.springframework.data.repository.query RepositoryQuery interface-usage

List of usage examples for org.springframework.data.repository.query RepositoryQuery interface-usage

Introduction

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

Usage

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

/**
 * Base class for {@link RepositoryQuery} implementations for MyBatis.
 */
public class MyBatisQuery implements RepositoryQuery {
    private final MyBatisQueryMethod queryMethod;
    private final MyBatisMapperProvider mapperProvider;

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

/**
 * iBatis statement  {@link RepositoryQuery} 
 * 
 * @author Yongkwon Park
 * @author Yunseok Choi
 *

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

/**
 * @author Michael Lavelle
 */
public class PartTreeDynamoDBQuery<T, ID extends Serializable> extends AbstractDynamoDBQuery<T, ID>
        implements RepositoryQuery {

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

/**
 * Base class for {@link RepositoryQuery} implementations for Marklogic.
 *
 * @author Stphane Toussaint
 */
public abstract class AbstractMarklogicQuery implements RepositoryQuery {

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

/**
 * @author Michael Lavelle
 */
public abstract class AbstractDynamoDBQuery<T, ID extends Serializable> implements RepositoryQuery {

    protected final DynamoDBOperations dynamoDBOperations;

From source file com.github.lothar.security.acl.jpa.query.AclJpaQuery.java

public class AclJpaQuery implements RepositoryQuery {

    private Logger logger = LoggerFactory.getLogger(getClass());
    private RepositoryQuery query;
    private Class<?> domainType;
    private EntityManager em;

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

/**
 * Base implementation of a solr specific {@link org.springframework.data.repository.query.RepositoryQuery}
 *
 * @author Christoph Strobl
 * @author Luke Corpe
 * @author Andrey Paramonov