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

cn.mapway.document.annotation.Header Maven / Gradle / Ivy

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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy