Add Javadoc since for headers() in Delete/Patch/Post/PutExchange

See gh-33309
Closes gh-33723
This commit is contained in:
Johnny Lim
2024-10-16 23:11:24 +09:00
committed by Sébastien Deleuze
parent ac458be845
commit cbdfe815aa
4 changed files with 4 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ public @interface DeleteExchange {
/**
* Alias for {@link HttpExchange#headers()}.
* @since 6.2
*/
@AliasFor(annotation = HttpExchange.class)
String[] headers() default {};

View File

@@ -62,6 +62,7 @@ public @interface PatchExchange {
/**
* Alias for {@link HttpExchange#headers()}.
* @since 6.2
*/
@AliasFor(annotation = HttpExchange.class)
String[] headers() default {};

View File

@@ -62,6 +62,7 @@ public @interface PostExchange {
/**
* Alias for {@link HttpExchange#headers()}.
* @since 6.2
*/
@AliasFor(annotation = HttpExchange.class)
String[] headers() default {};

View File

@@ -62,6 +62,7 @@ public @interface PutExchange {
/**
* Alias for {@link HttpExchange#headers()}.
* @since 6.2
*/
@AliasFor(annotation = HttpExchange.class)
String[] headers() default {};