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

Method RequestKey

mock/src/main/java/feign/mock/RequestKey.java:104–110  ·  view source on GitHub ↗
(Builder builder)

Source from the content-addressed store, hash-verified

102 private final byte[] body;
103
104 private RequestKey(Builder builder) {
105 this.method = builder.method;
106 this.url = builder.url;
107 this.headers = builder.headers;
108 this.charset = builder.charset;
109 this.body = builder.body;
110 }
111
112 private RequestKey(Request request) {
113 this.method = HttpMethod.valueOf(request.httpMethod().name());

Callers

nothing calls this directly

Calls 7

buildUrlMethod · 0.95
ofMethod · 0.95
httpMethodMethod · 0.80
nameMethod · 0.65
headersMethod · 0.65
bodyMethod · 0.65
charsetMethod · 0.45

Tested by

no test coverage detected