Top Description Methods
org.eclipse.microprofile.rest.client.annotation

public @Interface ClientHeaderParams

extends Annotation
Annotations
@Target:TYPE, METHOD
@Retention:RUNTIME
@Documented
Imports
java.lang.annotation.Documented, .ElementType, .Retention, .RetentionPolicy, .Target

Used to specify HTTP parameters that should be sent with the outbound request. When this annotation is placed at the interface level of a REST client interface, the specified headers will be sent on each request for all methods in the interface. When this annotation is placed on a method, the headers will be sent only for that method. If the same HTTP header is specified in an annotation for both the type and the method, only the header value specified in the annotation on the method will be sent.

This class serves to act as the java.lang.annotation.Repeatable implementation for ClientHeaderParam.

Since
1.2

Method Summary

Modifier and TypeMethod and Description
public ClientHeaderParam[]
Inherited from java.lang.annotation.Annotation:
annotationTypeequalshashCodetoString

Method Detail

valueback to summary
public ClientHeaderParam[] value()