modify method name of teh exmaple app
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / example / client / ExampleClient.java
index 4d7ea68..24f9ede 100644 (file)
@@ -38,7 +38,7 @@ public class ExampleClient {
     AnimalServiceClient implProxy =
         restServiceCreater.createService(AnimalServiceClient.class);
     
-    Animal animal = implProxy.queryAnimal1("panda").execute().body();
+    Animal animal = implProxy.queryAnimal("panda").execute().body();
     System.out.println("animal:" + animal);
   }