|
|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2018 the original author or authors. |
|
|
|
|
* Copyright 2002-2019 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
|
@ -349,8 +349,15 @@ public interface WebClient {
@@ -349,8 +349,15 @@ public interface WebClient {
|
|
|
|
|
S uri(String uri, Map<String, ?> uriVariables); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Build the URI for the request using the {@link UriBuilderFactory} |
|
|
|
|
* configured for this client. |
|
|
|
|
* Specify the URI starting with a URI template and finishing off with a |
|
|
|
|
* {@link UriBuilder} created from the template. |
|
|
|
|
* @since 5.2 |
|
|
|
|
*/ |
|
|
|
|
S uri(String uri, Function<UriBuilder, URI> uriFunction); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Specify the URI by through a {@link UriBuilder}. |
|
|
|
|
* @see #uri(String, Function) |
|
|
|
|
*/ |
|
|
|
|
S uri(Function<UriBuilder, URI> uriFunction); |
|
|
|
|
} |
|
|
|
|
|