![JAR search and dependency download from the Maven repository](/logo.png)
com.blade.mvc.annotation.PathParam Maven / Gradle / Ivy
package com.blade.mvc.annotation;
import java.lang.annotation.*;
/**
* Request Path Parameter Annotation
*
* @author biezhi
* @since 1.6.6
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PathParam {
String name() default "";
String defaultValue() default "";
/**
* @return route description
*/
String description() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy