com.github.jamesnetherton.zulip.client.http.ZulipHttpClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.http;
import com.github.jamesnetherton.zulip.client.exception.ZulipClientException;
/**
* Factory class for creating {@link ZulipHttpClient} implementations.
*
* Provides a way to use HTTP client libraries other than the default Apache Commons HTTP Client.
*/
public interface ZulipHttpClientFactory {
ZulipHttpClient createZulipHttpClient(ZulipConfiguration configuration) throws ZulipClientException;
}