com.github.cloudyrock.reactivehttp.annotations.HeaderParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-http Show documentation
Show all versions of reactive-http Show documentation
Annotation style wrapper for reactive web client. Right now only for Spring WebClient
The newest version!
package com.github.cloudyrock.reactivehttp.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface HeaderParam {
String value();
}