MSB IP and Port should be in config file
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / example / client / ExampleClient.java
index 4d7ea68..15a9f6f 100644 (file)
@@ -27,6 +27,7 @@ public class ExampleClient {
    * @throws IOException
    */
   public static void main(String[] args) throws IOException {
+    //For real use case, MSB IP and Port should come from configuration file instead of hard code here
     String MSB_IP="127.0.0.1";
     int MSB_Port=10081;
     
@@ -38,7 +39,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);
   }