(Builder builder)
| 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()); |