com.github.hippoom.resthelper.annotation.PathVar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-helper Show documentation
Show all versions of rest-helper Show documentation
An extension to spring-mvc to simplify restful application stuff, see https://github.com/Hippoom/rest-helper for more detail.
The newest version!
package com.github.hippoom.resthelper.annotation;
import java.lang.annotation.*;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PathVar {
/**
* The URI template variable to bind to.
*/
String value() default "";
}