(final Resource resource)
| 243 | } |
| 244 | |
| 245 | public static RequestMatcher endsWith(final Resource resource) { |
| 246 | return ApiUtils.endsWith(extractor(resource.id()), checkNotNull(resource, "Resource should not be null")); |
| 247 | } |
| 248 | |
| 249 | public static <T> RequestMatcher endsWith(final RequestExtractor<T> extractor, final String expected) { |
| 250 | return ApiUtils.endsWith(checkNotNull(extractor, "Extractor should not be null"), |