Append the value to the template. This method is poorly named and is used primarily to store the relative uri for the request. It has been replaced by RequestTemplate#uri(String) and will be removed in a future release. @param value to append. @return a RequestTemplate for chaining. @de
(CharSequence value)
| 398 | * @deprecated see {@link RequestTemplate#uri(String, boolean)} |
| 399 | */ |
| 400 | @Deprecated |
| 401 | public RequestTemplate append(CharSequence value) { |
| 402 | /* proxy to url */ |
| 403 | if (this.uriTemplate != null) { |
| 404 | return this.uri(value.toString(), true); |
| 405 | } |
| 406 | return this.uri(value.toString()); |
| 407 | } |
| 408 | |
| 409 | /** |
| 410 | * Insert the value at the specified point in the template uri. |