retrofit2.http.ParamUrl 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.
The newest version!
package retrofit2.http;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/** Created by ZhangZhenli on 2015/11/27. */
@Documented
@Target({TYPE})
@Retention(RUNTIME)
public @interface ParamUrl {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy