com.github.cloudyrock.reactivehttp.NamedParameterMetadata 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;
abstract class NamedParameterMetadata extends ParameterMetadata {
private final String name;
NamedParameterMetadata(int index, String name) {
super(index);
this.name = name;
}
String getName() {
return name;
}
}