org.webpieces.http2client.api.dto.FullResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http2-client Show documentation
Show all versions of http2-client Show documentation
Strictly an http/2 client for when you know the server does http2 keeping it KISS
package org.webpieces.http2client.api.dto;
import org.webpieces.data.api.DataWrapper;
import com.webpieces.hpack.api.dto.Http2Response;
import com.webpieces.hpack.api.dto.Http2Trailers;
public class FullResponse extends Http2Message {
private Http2Response headers;
public FullResponse() {
}
public FullResponse(Http2Response headers, DataWrapper fullData, Http2Trailers trailingHeaders) {
super(fullData, trailingHeaders);
this.headers = headers;
}
public Http2Response getHeaders() {
return headers;
}
public void setHeaders(Http2Response headers) {
this.headers = headers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy