Skip to content

Fix method links in Javadoc of WebClient #34938

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Flux<T> bodyToFlux(Class<T> elementClass);

/**
* Variant of {@link #bodyToMono(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #bodyToFlux(Class)} with a {@link ParameterizedTypeReference}.
* @param elementTypeRef the type of element to decode to
* @param <T> the body element type
* @return the decoded body
Expand All @@ -859,7 +859,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Mono<ResponseEntity<T>> toEntity(Class<T> bodyClass);

/**
* Variant of {@link #bodyToMono(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #toEntity(Class)} with a {@link ParameterizedTypeReference}.
* @param bodyTypeReference the expected response body type
* @param <T> the response body type
* @return the {@code ResponseEntity} with the decoded body
Expand All @@ -881,7 +881,7 @@ ResponseSpec onRawStatus(IntPredicate statusCodePredicate,
<T> Mono<ResponseEntity<List<T>>> toEntityList(Class<T> elementClass);

/**
* Variant of {@link #toEntity(Class)} with a {@link ParameterizedTypeReference}.
* Variant of {@link #toEntityList(Class)} with a {@link ParameterizedTypeReference}.
* @param elementTypeRef the type of element to decode the target Flux to
* @param <T> the body element type
* @return the {@code ResponseEntity}
Expand Down