(final String key)
| 345 | } |
| 346 | |
| 347 | public static RequestExtractor<String> cookie(final String key) { |
| 348 | return new CookieRequestExtractor(checkNotNullOrEmpty(key, "Cookie key should not be null")); |
| 349 | } |
| 350 | |
| 351 | public static ResponseHandler cookie(final String key, final String value, final CookieAttribute... attributes) { |
| 352 | return cookie(checkNotNullOrEmpty(key, "Cookie key should not be null"), |