-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issues/60 (#63) configure parameters by location
Configure parameters within per-location callbacks/namespaces: ``` myOperation .path(path -> path.id("1234")) .query(query -> query.foo("foo").bar("bar")) .sendSync(); ``` We've also re-assessed the role of UriTemplate as a tool for customizing requests, by which I mean, it is no longer used for that. Instead, the operation exposes `baseUri()`, `pathString()`, and `queryString()` methods that the user can use to create a new URI. This puts more of the customization work back in the native HTTP API.
- Loading branch information
Showing
8 changed files
with
347 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.