@Documented
@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface ParamHeaders
value.
@Headers("Cache-Control: max-age=640000")
@GET("/")
...
@Headers({
"X-Foo: Bar",
"X-Ping: Pong"
})
@GET("/")
...
Note: Headers do not overwrite each other. All headers with the same name will be included in the request.
| 限定符和类型 | 必需的元素和说明 |
|---|---|
java.lang.String[] |
value |