All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.client.http2.HTTPClientResponse Maven / Gradle / Ivy

There is a newer version: 4.0.3.2
Show newest version
package com.firefly.client.http2;

import com.firefly.codec.http2.model.HttpFields;
import com.firefly.codec.http2.model.HttpVersion;
import com.firefly.codec.http2.model.MetaData;

public class HTTPClientResponse extends MetaData.Response {
	
	public HTTPClientResponse(HttpVersion version, int status, String reason) {
		super(version, status, reason, new HttpFields(), -1);
	}
	
	public HTTPClientResponse(HttpVersion version, int status, String reason, HttpFields fields, long contentLength) {
		super(version, status, reason, fields, contentLength);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy