retrofit2.BaseUrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retrofit Show documentation
Show all versions of retrofit Show documentation
A type-safe HTTP client for Android and Java.
package retrofit2;
import okhttp3.HttpUrl;
/** The base URL of the remote service. */
public interface BaseUrl {
/**
* The base URL.
*
* Consumers will call this method every time they need to create a request allowing values
* to change over time.
*/
HttpUrl url();
}