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

com.jianggujin.http.support.annotation.JPathParam Maven / Gradle / Ivy

package com.jianggujin.http.support.annotation;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

/**
 * 请求参数
 * 
 * @author jianggujin
 *
 */
@Retention(RUNTIME)
@Target(PARAMETER)
public @interface JPathParam {
   /**
    * 参数名称
    * 
    * @return
    */
   String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy