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

io.quarkus.rest.client.reactive.NotBody Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.rest.client.reactive;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * The sole purpose of this annotation is to allow REST Client methods to contain multiple non-annotated Jakarta REST parameters
 * which would normally not be allowed because all the parameters would be considered to represent the body of the request.
 * 

* The primary use case of this annotation is to facilitate obtaining method parameters in * {@link org.eclipse.microprofile.rest.client.annotation.ClientHeaderParam} * when using method invocation or parameter reference. */ @Target({ ElementType.PARAMETER }) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface NotBody { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy