com.king.platform.net.http.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of king-http-client Show documentation
Show all versions of king-http-client Show documentation
A asyncronous http client built ontop of netty.
// Copyright (C) king.com Ltd 2015
// https://github.com/king/king-http-client
// Author: Magnus Gustafsson
// License: Apache 2.0, https://raw.github.com/king/king-http-client/LICENSE-APACHE
package com.king.platform.net.http;
import com.king.platform.net.http.netty.NettyHeaders;
import io.netty.handler.codec.http.HttpHeaders;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.HttpVersion;
import java.util.List;
import java.util.Map;
public class HttpResponse {
private final HttpVersion httpVersion;
private final Headers headers;
private final HttpResponseStatus status;
private final ResponseBodyConsumer responseBodyConsumer;
public HttpResponse(HttpVersion httpVersion, HttpResponseStatus status,
ResponseBodyConsumer responseBodyConsumer, HttpHeaders httpHeaders) {
this.httpVersion = httpVersion;
this.status = status;
this.responseBodyConsumer = responseBodyConsumer;
this.headers = new NettyHeaders(httpHeaders);
}
public String getHttpVersion() {
return httpVersion.toString();
}
public int getStatusCode() {
return status.code();
}
public String getStatusReason() {
return status.reasonPhrase();
}
public T getBody() {
return responseBodyConsumer.getBody();
}
public String getHeader(CharSequence name) {
return headers.get(name);
}
public List getHeaders(CharSequence name) {
return headers.getAll(name);
}
public List> getAllHeaders() {
return headers.entries();
}
public Headers headers() {
return headers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy