
net.anthavio.httl.api.HttlApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hatatitla Show documentation
Show all versions of hatatitla Show documentation
Compact but tweakable REST client library you have been dreaming of
The newest version!
package net.anthavio.httl.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author martin.vanek
*
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface HttlApi {
/**
* @return url path prefix for all @HttlCall
*/
String value() default "";
/**
* @return url path prefix for all @HttlCall
*/
String uri() default "";
/**
* @return Configure commonly used VarSetter so it does not need to be decalared in every @HttlVar(setter=...)
*/
Class extends VarSetter>[] setters() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy