Package io.quarkus.rest.client.reactive
Interface ComputedParamContext
-
- All Known Implementing Classes:
ComputedParamContextImpl
public interface ComputedParamContextAllows methods that are meant to compute a value for a Rest Client method to have access to the context on which they are invoked
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceComputedParamContext.MethodParameter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ComputedParamContext.MethodParameter>methodParameters()Information about the method parameters of the REST Client method for which the computed value is neededStringname()The name of the parameter whose value is being computed
-
-
-
Method Detail
-
name
String name()
The name of the parameter whose value is being computed
-
methodParameters
List<ComputedParamContext.MethodParameter> methodParameters()
Information about the method parameters of the REST Client method for which the computed value is needed
-
-