retrofit2.package-info 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.
// Copyright 2014 Square, Inc.
/**
* Retrofit turns your REST API into a Java interface.
*
* public interface GitHubService {
* @GET("/users/{user}/repos")
* List<Repo> listRepos(@Path("user") String user);
* }
*
*/
@ParametersAreNonnullByDefault
package retrofit2;
import javax.annotation.ParametersAreNonnullByDefault;