yurake/k8s-3tier-webapp

View on GitHub
application/consumer-hazelcast-quarkus/src/main/java/webapp/tier/service/HazelcastDeliverService.java

Summary

Maintainability
A
0 mins
Test Coverage
package webapp.tier.service;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;

@Path("/random")
@RegisterRestClient(configKey = "random")
public interface HazelcastDeliverService {

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    String random();

}