modify method name of teh exmaple app
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / example / client / AnimalServiceClient.java
index 8600241..cd9ebbb 100644 (file)
@@ -20,14 +20,9 @@ import retrofit2.Call;
 import retrofit2.http.GET;
 import retrofit2.http.Path;
 
-/**
- * @author hu.rui
- *
- */
-
 @ServiceHttpEndPoint(serviceName = "animals", serviceVersion = "v1")
 public interface AnimalServiceClient {
 
   @GET("animals/{name}")
-  Call<Animal> queryAnimal1(@Path("name") String name);
+  Call<Animal> queryAnimal(@Path("name") String name);
 }