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

org.yeauty.annotation.PathVariable Maven / Gradle / Ivy

There is a newer version: 0.12.0
Show newest version
package org.yeauty.annotation;

import org.springframework.core.annotation.AliasFor;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface PathVariable {

    /**
     * Alias for {@link #name}.
     */
    @AliasFor("name")
    String value() default "";

    /**
     * The name of the path variable to bind to.
     */
    @AliasFor("value")
    String name() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy