We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb58715 commit 579c127Copy full SHA for 579c127
1 file changed
src/main/java/com/retailsvc/http/ResponseDecorator.java
@@ -8,6 +8,9 @@
8
* <p>Because decorators run <em>after</em> the handler, decorator-supplied headers override
9
* handler-supplied ones on conflict. If you need the opposite semantics, use {@link
10
* Response#withHeaders(java.util.Map)} inside the handler instead.
11
+ *
12
+ * <p>Decorators run inside the {@link RequestInterceptor} chain, so any {@link ScopedValue}
13
+ * bindings established by interceptors are visible here.
14
*/
15
@FunctionalInterface
16
public interface ResponseDecorator {
0 commit comments