Realize query thirdparty sdnc list API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.java
index cebab2c..01d8ac3 100644 (file)
@@ -61,4 +61,12 @@ public class ExternalSystemProxy {
     registerVnfmServiceproxy.registerThirdpartySdnc(transactionId, fromAppId, authorization, thirdpartySdncId,
         esrSdncDetail);
   }
+  
+  public static String queryThirdpartySdncDetail(String thirdpartySdncId) throws Exception{
+    return externalSystemproxy.queryThirdpartySdncDetail(transactionId, fromAppId, authorization, thirdpartySdncId);
+  }
+  
+  public static String querySdncList() throws Exception {
+    return externalSystemproxy.queryThirdpartySdncList(transactionId, fromAppId, authorization);
+  }
 }