Set the trailer fields supplier. @param supplier The trailer fields supplier
(Supplier<Map<String,String>> supplier)
| 495 | * @param supplier The trailer fields supplier |
| 496 | */ |
| 497 | public void setTrailerFields(Supplier<Map<String,String>> supplier) { |
| 498 | AtomicBoolean trailerFieldsSupported = new AtomicBoolean(false); |
| 499 | action(ActionCode.IS_TRAILER_FIELDS_SUPPORTED, trailerFieldsSupported); |
| 500 | if (!trailerFieldsSupported.get()) { |
| 501 | throw new IllegalStateException(sm.getString("response.noTrailers.notSupported")); |
| 502 | } |
| 503 | |
| 504 | this.trailerFieldsSupplier = supplier; |
| 505 | } |
| 506 | |
| 507 | |
| 508 | /** |