(String method, String uri, String protocolVersion, SocketAddress remoteAddress)
| 22 | private KeyValueList queryParams = KeyValueList.EMPTY; |
| 23 | |
| 24 | public HttpRequest(String method, String uri, String protocolVersion, SocketAddress remoteAddress) { |
| 25 | this.method = method; |
| 26 | this.setRequestUri(URI.create(uri)); |
| 27 | this.protocolVersion = protocolVersion; |
| 28 | this.socketAddress = remoteAddress; |
| 29 | } |
| 30 | |
| 31 | public HttpRequest(SocketAddress socketAddress) { |
| 32 | this.socketAddress = socketAddress; |
nothing calls this directly
no test coverage detected