(final String text)
| 283 | } |
| 284 | |
| 285 | public static ContentResource text(final String text) { |
| 286 | checkNotNull(text, "Text should not be null"); |
| 287 | return text((request) -> text); |
| 288 | } |
| 289 | |
| 290 | public static ContentResource text(final Function<Request, String> function) { |
| 291 | return textResource(checkNotNull(function, "Text function should not be null")); |