Example usage for org.springframework.data.repository.core EntityInformation interface-usage

List of usage examples for org.springframework.data.repository.core EntityInformation interface-usage

Introduction

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

Usage

From source file org.springdata.ehcache.repository.support.EhcacheEntityInformation.java

public interface EhcacheEntityInformation<T> extends EntityInformation<T, String> {

    String getCacheName();

}

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

/**
 * MyBatis specific {@link EntityInformation}.
 */
public interface MyBatisEntityInformation<T, ID extends Serializable> extends EntityInformation<T, ID> {
    /**
     * Returns the attribute that the id will be persisted to.

From source file nivance.jpa.cassandra.prepare.mapping.CassandraEntityInformation.java

/**
 * Cassandra specific {@link EntityInformation}.
 * 
 * @author Alex Shvid
 * 
 */

From source file com.joyveb.dbpimpl.cass.prepare.mapping.CassandraEntityInformation.java

/**
 * Cassandra specific {@link EntityInformation}.
 * 
 * @author Alex Shvid
 * 
 */

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

/**
 * Marklogic specific {@link EntityInformation}.
 *
 * @author Stphane Toussaint
 */
public interface MarklogicEntityInformation<T, ID> extends EntityInformation<T, ID> {

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

/**
 * @param <T>
 * @param <ID>
 * @author Christoph Strobl
 */
public interface SolrEntityInformation<T, ID extends Serializable> extends EntityInformation<T, ID> {

From source file org.socialsignin.spring.data.dynamodb.repository.support.DynamoDBEntityInformation.java

/**
 * Encapsulates minimal information needed to load DynamoDB entities.
 * 
 * As a minimum, provides access to hash-key related metadata.
 * 
 * Implementing classes can elect to be either range-key aware or not. If a

From source file egov.data.hibernate.repository.support.HibernateEntityInformation.java

/**
 * @author Keesun Baik
 */
public interface HibernateEntityInformation<T, ID extends Serializable> extends EntityInformation<T, ID> {

    //    SingularAttribute<? super T, ?> getIdAttribute();