cn.mapway.document.annotation.Header Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-tools-doc Show documentation
Show all versions of api-tools-doc Show documentation
auto gen doc from api with ui
The newest version!
package cn.mapway.document.annotation;
import java.lang.annotation.*;
/**
* The interface Header.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface Header {
/**
* 用于Header中的 KEY值 例如 ENN-TOKEN
*
* @return the string
*/
String key() default "";
/**
* HEader中的VALUE值
*
* @return the int
*/
String value() default "";
}