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

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