All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.clouthink.daas.fss.mysql.repository.AbstractRepository Maven / Gradle / Ivy

There is a newer version: 3.0.7
Show newest version
package in.clouthink.daas.fss.mysql.repository;

import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.data.repository.PagingAndSortingRepository;

@NoRepositoryBean
public interface AbstractRepository extends PagingAndSortingRepository {

	/**
	 * Finds the individual record by the external facing id. This is used
	 * instead of findOne, which finds based on the database id.
	 *
	 * @param id The Externally facing ID
	 * @return the matching record
	 */
	T findById(String id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy