Realize the delete thirdparty SDNC API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.java
index eda2eb2..e7f5d4b 100644 (file)
@@ -65,4 +65,12 @@ public class ExternalSystemProxy {
   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);
+  }
+  
+  public static void deleteThirdpartySdnc(String sdncId, String resourceVersion) throws Exception {
+    externalSystemproxy.deleteThirdpartySdnc(transactionId, fromAppId, authorization, sdncId, resourceVersion);
+  }
 }