()
| 125 | |
| 126 | // Prepares the full URL based on the scheme, host, port and path. |
| 127 | private void prepareUrl() { |
| 128 | this.uri = String.format("%s://%s:%s%s?%s", |
| 129 | scheme, host, port, path, getQueryParams()); |
| 130 | } |
| 131 | |
| 132 | // Prepares the headers to be sent in the request |
| 133 | private void prepareHeaders() { |