MCPcopy Index your code
hub / github.com/OpenFeign/feign / append

Method append

core/src/main/java/feign/RequestTemplate.java:400–407  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 15

loadMethod · 0.45
charactersMethod · 0.45
charactersMethod · 0.45
charactersMethod · 0.45
canonicalStringMethod · 0.45
toSignMethod · 0.45
hexMethod · 0.45
repeatStringMethod · 0.45
toStringMethod · 0.45
joinMethod · 0.45
toStringMethod · 0.45
buildMethod · 0.45

Calls 2

uriMethod · 0.95
toStringMethod · 0.45

Tested by 15

charactersMethod · 0.36
charactersMethod · 0.36
charactersMethod · 0.36
canonicalStringMethod · 0.36
toSignMethod · 0.36
hexMethod · 0.36
repeatStringMethod · 0.36
canonicalStringMethod · 0.36
toSignMethod · 0.36
hexMethod · 0.36
processMethod · 0.36