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

com.github.hippoom.resthelper.annotation.PathVar Maven / Gradle / Ivy

Go to download

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 "";

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy