| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ServerConfigRepository |
|
| 1.0;1 |
| 1 | package com.ctrip.framework.apollo.biz.repository; | |
| 2 | ||
| 3 | import com.ctrip.framework.apollo.biz.entity.ServerConfig; | |
| 4 | ||
| 5 | import org.springframework.data.repository.PagingAndSortingRepository; | |
| 6 | ||
| 7 | /** | |
| 8 | * @author Jason Song(song_s@ctrip.com) | |
| 9 | */ | |
| 10 | public interface ServerConfigRepository extends PagingAndSortingRepository<ServerConfig, Long> { | |
| 11 | ServerConfig findTopByKeyAndCluster(String key, String cluster); | |
| 12 | } |