retrofit.http
Annotation Type Headers


@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface Headers

Adds headers literally supplied in the 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.

Author:
Adrian Cole ([email protected])

Required Element Summary
 String[] value
           
 

Element Detail

value

public abstract String[] value


Copyright © 2013 Square, Inc.. All Rights Reserved.