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

reactivefeign.benchmarks.FeignTestInterface Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package reactivefeign.benchmarks;

import feign.Headers;
import feign.RequestLine;

import java.util.Map;

import static reactivefeign.benchmarks.RealRequestBenchmarks.PATH_WITH_PAYLOAD;

@Headers("Accept: application/json")
interface FeignTestInterface {

  @RequestLine("GET /")
  String justGet();

  @RequestLine("POST "+PATH_WITH_PAYLOAD)
  Map postWithPayload(Map payload);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy