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

org.solovyev.android.http.AHttpClient Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.http;

import org.apache.http.impl.client.DefaultHttpClient;

import javax.annotation.Nonnull;
import java.io.IOException;
import java.util.List;

public interface AHttpClient {

	@Nonnull
	DefaultHttpClient getHttpClient();

	 R execute(@Nonnull HttpTransaction httpTransaction) throws IOException;

	@Nonnull
	 List execute(@Nonnull List> httpTransactions) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy