(final String uri)
| 319 | } |
| 320 | |
| 321 | public static Resource uri(final String uri) { |
| 322 | return uriResource(checkNotNullOrEmpty(uri, "URI should not be null")); |
| 323 | } |
| 324 | |
| 325 | public static Resource method(final String httpMethod) { |
| 326 | return methodResource(checkNotNullOrEmpty(httpMethod, "HTTP method should not be null")); |