Skip to content
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

NIFI-13982 - Web client - body as string and get request URI for response entity #9500

Merged
merged 4 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Apply suggestions from code review
Co-authored-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
pvillard31 and exceptionfactory authored Nov 12, 2024
commit 29e8e12db41a8a575f6699983ca19b1ce941f70b
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ public interface HttpResponseEntity extends Closeable {
*
* @return HTTP URI from which the response was retrieved
*/
URI getUri();
URI uri();
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void close() throws IOException {
}

@Override
public URI getUri() {
public URI uri() {
return uri;
}
}