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

Method appendHeader

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

Append the Header. Will create a new Header if it doesn't already exist. Treats all values as potentially expressions. @param name of the header @param values for the header, may be expressions. @return a RequestTemplate for chaining.

(String name, Iterable<String> values)

Source from the content-addressed store, hash-verified

800 * @return a RequestTemplate for chaining.
801 */
802 private RequestTemplate appendHeader(String name, Iterable<String> values) {
803 return this.appendHeader(name, values, false);
804 }
805
806 /**
807 * Append the Header. Will create a new Header if it doesn't already exist.

Callers 3

resolveMethod · 0.95
headerMethod · 0.95
headerLiteralMethod · 0.95

Calls 10

createMethod · 0.95
literalMethod · 0.95
appendLiteralMethod · 0.95
appendMethod · 0.95
iteratorMethod · 0.80
putMethod · 0.65
nextMethod · 0.65
hasNextMethod · 0.45
removeMethod · 0.45
equalsMethod · 0.45

Tested by

no test coverage detected