yurake/k8s-3tier-webapp

View on GitHub
application/consumer-activemq-quarkus/src/main/java/webapp/tier/service/ActiveMqDeliverService.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 org.eclipse.microprofile.rest.client.inject.RegisterRestClient;

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

    @GET
    @Produces("application/json")
    String random();

}