(String template)
| 108 | } |
| 109 | |
| 110 | public static TemplatizedRouteConfig post(String template) { |
| 111 | UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template)); |
| 112 | |
| 113 | return new TemplatizedRouteConfig( |
| 114 | new MatchesHttpMethod(POST).and(new MatchesTemplate(urlTemplate)), urlTemplate); |
| 115 | } |
| 116 | |
| 117 | public static TemplatizedRouteConfig options(String template) { |
| 118 | UrlTemplate urlTemplate = new UrlTemplate(Require.nonNull("URL template", template)); |