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

com.github.dadiyang.httpinvoker.annotation.Headers Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.dadiyang.httpinvoker.annotation;

import java.lang.annotation.*;

/**
 * Indicates the parameter is a header map.
 *
 * @author huangxuyang
 * date 2018/12/21
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.TYPE})
public @interface Headers {
    String[] keys() default "";

    String[] values() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy