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

com.github.cloudyrock.reactivehttp.NamedParameterMetadata Maven / Gradle / Ivy

Go to download

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy