Skip to content

Commit 579c127

Browse files
committed
docs: Document ScopedValue visibility in ResponseDecorator javadoc
1 parent fb58715 commit 579c127

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main/java/com/retailsvc/http/ResponseDecorator.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
* <p>Because decorators run <em>after</em> the handler, decorator-supplied headers override
99
* handler-supplied ones on conflict. If you need the opposite semantics, use {@link
1010
* 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.
1114
*/
1215
@FunctionalInterface
1316
public interface ResponseDecorator {

0 commit comments

Comments
 (0)