jonahkh
2020-05-13 4829e49af4e2cd4d8c8dfe0c215bd9f3d65efdfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.redhat.training.api;
 
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
 
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
 
@RegisterRestClient
public interface SpanishService {
 
    @Path("/")
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String sayHola();
 
}