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

restx.annotations.Param Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package restx.annotations;

/**
 * User: xavierhanin
 * Date: 1/19/13
 * Time: 3:55 PM
 */
public @interface Param {
    public static enum Kind {
        PATH, QUERY, BODY, CONTEXT, HEADER, DEFAULT
    }

    String value() default "";
    Kind kind() default Kind.DEFAULT;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy