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

de.mklinger.qetcher.client.httpclient.internal.jetty.BodyResult Maven / Gradle / Ivy

There is a newer version: 2.0.42.rc
Show newest version
package de.mklinger.commons.httpclient.internal.jetty;

import org.eclipse.jetty.client.api.Result;

/**
 * @author Marc Klinger - mklinger[at]mklinger[dot]de
 */
public class BodyResult {
	private final Result result;
	private final T body;

	public BodyResult(final Result result, final T body) {
		this.result = result;
		this.body = body;
	}

	public Result getResult() {
		return result;
	}

	public T getBody() {
		return body;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy