(String template)
| 94 | } |
| 95 | |
| 96 | public static TemplatizedRouteConfig delete(String template) { |
| 97 | UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template)); |
| 98 | |
| 99 | return new TemplatizedRouteConfig( |
| 100 | new MatchesHttpMethod(DELETE).and(new MatchesTemplate(urlTemplate)), urlTemplate); |
| 101 | } |
| 102 | |
| 103 | public static TemplatizedRouteConfig get(String template) { |
| 104 | UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template)); |