io.quarkus.qe.PongClient Maven / Gradle / Ivy
package io.quarkus.qe;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
@RegisterRestClient
@Path("/pong")
public interface PongClient {
@GET
@Produces(MediaType.TEXT_PLAIN)
String getPong();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy