All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anthavio.httl.api.HttlApi Maven / Gradle / Ivy

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[] setters() default {};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy