| 1 | |
package com.ctrip.framework.apollo.biz.repository; |
| 2 | |
|
| 3 | |
import java.util.List; |
| 4 | |
|
| 5 | |
import org.springframework.data.repository.PagingAndSortingRepository; |
| 6 | |
|
| 7 | |
import com.ctrip.framework.apollo.biz.entity.Namespace; |
| 8 | |
|
| 9 | |
public interface NamespaceRepository extends PagingAndSortingRepository<Namespace, Long> { |
| 10 | |
|
| 11 | |
List<Namespace> findByAppIdAndClusterNameOrderByIdAsc(String appId, String clusterName); |
| 12 | |
|
| 13 | |
Namespace findByAppIdAndClusterNameAndNamespaceName(String appId, String clusterName, String namespaceName); |
| 14 | |
} |