/* * Copyright © 2021, 2022, 2023 Peter Doornbosch * * This file is part of Kwik, an implementation of the QUIC protocol in Java. * * Kwik is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your option) * any later version. * * Kwik is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for * more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ package net.luminis.quic.client.h09; import javax.net.ssl.SSLSession; import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpHeaders; import java.net.http.HttpRequest; import java.net.http.HttpResponse; import java.util.Collections; import java.util.Optional; public class HttpResponseImpl implements HttpResponse { private final HttpRequest request; private final T body; public HttpResponseImpl(HttpRequest request, T body) { this.request = request; this.body = body; } @Override public int statusCode() { return 200; } @Override public HttpRequest request() { return request; } @Override public Optional> previousResponse() { return Optional.empty(); } @Override public HttpHeaders headers() { return HttpHeaders.of(Collections.emptyMap(), (u, v) -> true); } @Override public T body() { return body; } @Override public Optional sslSession() { return Optional.empty(); } @Override public URI uri() { return request.uri(); } @Override public HttpClient.Version version() { return null; } }