aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/main/java/org/onap/boot/example/demo/EmployeeServiceClient.java
blob: 8a7670b410942395395e966d2a305f95e22461b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.onap.boot.example.demo;

import org.onap.boot.example.demo.model.Employee;
import org.onap.msb.sdk.httpclient.annotaion.ServiceHttpEndPoint;

import retrofit2.Call;
import retrofit2.http.GET;

@ServiceHttpEndPoint(serviceName = "employee", serviceVersion = "v1")
public interface EmployeeServiceClient {
	  @GET("employee")
	  Call<Employee> queryEmployee();
}