Skip to content

Instantly share code, notes, and snippets.

@theflofly
Created January 14, 2016 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theflofly/c66d18a8f4c1180d31a3 to your computer and use it in GitHub Desktop.
Save theflofly/c66d18a8f4c1180d31a3 to your computer and use it in GitHub Desktop.
package com.tcb.issue1.repository;
import com.tcb.issue1.model.Car;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
/**
* This class is a repository for the car object model. It abstract the data access by providing default methods to
* access data.
*
* Created by Florian.Courtial on 11/01/16.
*/
public interface CarRepository extends ElasticsearchRepository<Car,String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment